From c7b99a932cab1873042e356143ab71755920157a Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Tue, 28 Jul 2015 15:08:21 +0200 Subject: [PATCH] Nest: Fixes one of previous commit --- nest/config.Y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/config.Y b/nest/config.Y index 7ad6c712..799a09f9 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -108,7 +108,7 @@ idval: $$ = SYM_VAL($1).i; #ifndef IPV6 else if ($1->class == (SYM_CONSTANT | T_IP)) - $$ = SYM_VAL($1).px.ip; + $$ = ipa_to_u32(SYM_VAL($1).px.ip); #endif else cf_error("Number of IPv4 address constant expected");