summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'extensions')
-rw-r--r--extensions/ebt_ip.c4
-rw-r--r--extensions/ebt_nat.c2
-rw-r--r--extensions/ebt_redirect.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/extensions/ebt_ip.c b/extensions/ebt_ip.c
index 4a9c8dc..ddd9944 100644
--- a/extensions/ebt_ip.c
+++ b/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;
}
diff --git a/extensions/ebt_nat.c b/extensions/ebt_nat.c
index d3ed74d..f25c806 100644
--- a/extensions/ebt_nat.c
+++ b/extensions/ebt_nat.c
@@ -205,7 +205,7 @@ static struct ebt_u_target dnat_target =
final_check_d,
print_d,
compare,
- opts_d,
+ opts_d
};
static void _init(void) __attribute__ ((constructor));
diff --git a/extensions/ebt_redirect.c b/extensions/ebt_redirect.c
index 436158e..1975435 100644
--- a/extensions/ebt_redirect.c
+++ b/extensions/ebt_redirect.c
@@ -95,7 +95,7 @@ static struct ebt_u_target redirect_target =
final_check,
print,
compare,
- opts,
+ opts
};
static void _init(void) __attribute__ ((constructor));