From dd5e35da5f74e9ed3bbfb639c2bab927a12c634f Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 4 Jun 2018 01:48:51 +0100 Subject: [PATCH] linux.c: Reformat to suppress a compiler warning. Organization: Straylight/Edgeware From: Mark Wooding Maybe -- maybe -- the code was overly compressed. --- linux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux.c b/linux.c index 571b179..8ed0396 100644 --- a/linux.c +++ b/linux.c @@ -313,7 +313,8 @@ void identify(struct query *q) * field (but do check the port number). */ if (q->ao->sys->parseaddr(&p, &s[i].addr)) goto next_row; - if (*p != ':') break; p++; + if (*p != ':') break; + p++; s[i].port = strtoul(p, 0, 16); if ((i == R && gwp) ? q->s[R].port != s[i].port : -- [mdw]