From: Ondrej Zajicek Date: Tue, 28 Jul 2015 13:08:21 +0000 (+0200) Subject: Nest: Fixes one of previous commit X-Git-Tag: v1.6.0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7b99a932cab1873042e356143ab71755920157a;p=thirdparty%2Fbird.git Nest: Fixes one of previous commit --- diff --git a/nest/config.Y b/nest/config.Y index 7ad6c712e..799a09f90 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");