From 6781da6bfba48607539c2c6057cfff91ecdc948c Mon Sep 17 00:00:00 2001 From: Bart De Schuymer Date: Sat, 17 Aug 2002 09:14:07 +0000 Subject: *** empty log message *** --- userspace/ebtables2/extensions/ebt_ip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'userspace/ebtables2/extensions/ebt_ip.c') diff --git a/userspace/ebtables2/extensions/ebt_ip.c b/userspace/ebtables2/extensions/ebt_ip.c index 4a9c8dc..ddd9944 100644 --- a/userspace/ebtables2/extensions/ebt_ip.c +++ b/userspace/ebtables2/extensions/ebt_ip.c @@ -84,13 +84,13 @@ void parse_ip_address(char *address, uint32_t *addr, uint32_t *msk) if ((p = strrchr(address, '/')) != NULL) { *p = '\0'; if (ip_mask(p + 1, (unsigned char *)msk)) - print_error("Problem with the ip mask"); + print_error("Problem with the IP mask"); } else *msk = 0xFFFFFFFF; if (undot_ip(address, (unsigned char *)addr)) - print_error("Problem with the ip address"); + print_error("Problem with the IP address"); *addr = *addr & *msk; } -- cgit v1.2.3