From df5a8c5b32733ae5e2d872b1c7baa4311a9d2308 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 15 May 2021 22:36:21 +0200 Subject: Strange fixes I have no ideas halp --- libs/libnet/ip.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libs/libnet') diff --git a/libs/libnet/ip.c b/libs/libnet/ip.c index 20e1a38..66fd8eb 100644 --- a/libs/libnet/ip.c +++ b/libs/libnet/ip.c @@ -12,13 +12,12 @@ int ip_pton(const char *src, u32 *dst) { const char *end = src + strlen(src); u8 tmp[4], *tp; - int ch = 0; int saw_digit = 0; int octets = 0; *(tp = tmp) = 0; while (src < end) { - ch = *src++; + int ch = *src++; if (ch >= '0' && ch <= '9') { u32 new = *tp * 10 + (ch - '0'); -- cgit v1.2.3