From: Andre Noll <maan@tuebingen.mpg.de>
Date: Fri, 26 Aug 2016 18:56:14 +0000 (+0200)
Subject: net.c: Fix two trivial whitespace issues.
X-Git-Tag: v0.5.7~26
X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=ab16ee3ef7066e937ab77d42bba0beac659fcbef;p=paraslash.git

net.c: Fix two trivial whitespace issues.
---

diff --git a/net.c b/net.c
index 1b142a3c..13694989 100644
--- a/net.c
+++ b/net.c
@@ -175,8 +175,7 @@ char *parse_url(const char *url,
 	}
 
 	if (*o == ':')
-		if (para_atoi32(++o, port) < 0 ||
-		    *port < 0 || *port > 0xffff)
+		if (para_atoi32(++o, port) < 0 || *port < 0 || *port > 0xffff)
 			goto failed;
 	if (host_string_ok(host))
 		return host;
@@ -187,6 +186,7 @@ failed:
 
 /**
  * Stringify port number, resolve into service name where defined.
+ *
  * \param port 2-byte port number, in host-byte-order.
  * \param transport Transport protocol name (e.g. "udp", "tcp"), or NULL.
  * \return Pointer to static result buffer.