summaryrefslogtreecommitdiffstats
path: root/userspace/ebtables2/extensions/ebt_ip.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-08-17 09:14:07 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-08-17 09:14:07 +0000
commit6781da6bfba48607539c2c6057cfff91ecdc948c (patch)
tree14b6491a5b011d1e8df0e951cbff191b24dbd6db /userspace/ebtables2/extensions/ebt_ip.c
parent15e8eba1f969b8b7f0b71b82468d8b65b22e067c (diff)
*** empty log message ***
Diffstat (limited to 'userspace/ebtables2/extensions/ebt_ip.c')
-rw-r--r--userspace/ebtables2/extensions/ebt_ip.c4
1 files changed, 2 insertions, 2 deletions
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;
}