Collapse two if blocks into one
[privoxy.git] / ssl.c
diff --git a/ssl.c b/ssl.c
index e2389f0..85701ce 100644 (file)
--- 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;
       }
    }