1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Minor fixes

This commit is contained in:
Pavel Tvrdík
2015-01-07 15:04:02 +01:00
committed by Ondrej Zajicek
parent 85a3639d99
commit 6264aad16f
2 changed files with 2 additions and 2 deletions

View File

@@ -246,7 +246,7 @@ ip4_pton(char *a, ip4_addr *o)
if (!c != !i)
return 0;
l = strtoul(a, &d, 10);
if (d != c && *d || l > 255)
if (((d != c) && *d) || (l > 255))
return 0;
ia = (ia << 8) | l;
if (c)