summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2013-05-03 15:54:18 +0200
committerBerke Viktor <bviktor@hexchat.org>2013-05-03 15:54:18 +0200
commit99fed089cf3e17d4de6a7b9f84fe5a10c617589f (patch)
treeb3d7cc270cdb027ee4dc41d48c4b249d814984a9 /src
parente3fd5010570eb7082f2108de21a4f094cf64ac5f (diff)
Line breaks and typofix
Diffstat (limited to 'src')
-rw-r--r--src/common/server.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/server.c b/src/common/server.c
index 2427ac6d..2f87faad 100644
--- a/src/common/server.c
+++ b/src/common/server.c
@@ -1762,7 +1762,11 @@ server_connect (server *serv, char *hostname, int port, int no_login)
 										serv, 0, (DWORD *)&pid));
 #else
 #ifdef LOOKUPD
-	rand();	/* CL: net_resolve calls rand() when LOOKUPD is set, so prepare a different seed for each child. This method giver a bigger variation in seed values than calling srand(time(0)) in the child itself. */
+	/* CL: net_resolve calls rand() when LOOKUPD is set, so prepare a different
+	 * seed for each child. This method gives a bigger variation in seed values
+	 * than calling srand(time(0)) in the child itself.
+	 */
+	rand();
 #endif
 	switch (pid = fork ())
 	{