From d119cac814d19b58c0a299ebaeed7f58edf887d5 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 23 Jul 2020 14:00:53 +0200 Subject: [PATCH] Collapse two if blocks into one Sponsored by: Robert Klemme --- ssl.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ssl.c b/ssl.c index e2389f08..85701ce0 100644 --- a/ssl.c +++ b/ssl.c @@ -1548,13 +1548,10 @@ static int host_is_ip_address(const char *host) for (p = host; *p; p++) { - if (*p != '.') + if ((*p != '.') && !privoxy_isdigit(*p)) { - if (!privoxy_isdigit(*p)) - { - /* Not a dot or digit so it can't be an IPv4 address. */ - return 0; - } + /* Not a dot or digit so it can't be an IPv4 address. */ + return 0; } } -- 2.39.2