From 7ac405297ec38449b30e3b05fd6bf2082fd3d803 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 7 Jan 2011 12:34:04 +0100 Subject: src: use C99/POSIX types "u_int" was a non-standardized extension predating C99 on some platforms. Signed-off-by: Jan Engelhardt --- extensions/libip6t_hl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/libip6t_hl.c') diff --git a/extensions/libip6t_hl.c b/extensions/libip6t_hl.c index 6e58250c..ce4392ee 100644 --- a/extensions/libip6t_hl.c +++ b/extensions/libip6t_hl.c @@ -27,7 +27,7 @@ static int hl_parse(int c, char **argv, int invert, unsigned int *flags, const void *entry, struct xt_entry_match **match) { struct ip6t_hl_info *info = (struct ip6t_hl_info *) (*match)->data; - u_int8_t value; + uint8_t value; xtables_check_inverse(optarg, &invert, &optind, 0, argv); value = atoi(optarg); -- cgit v1.2.3