1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00

Line breaks and typofix

This commit is contained in:
Berke Viktor 2013-05-03 15:54:18 +02:00
parent e3fd501057
commit 99fed089cf

View File

@ -1762,7 +1762,11 @@ server_connect (server *serv, char *hostname, int port, int no_login)
serv, 0, (DWORD *)&pid)); serv, 0, (DWORD *)&pid));
#else #else
#ifdef LOOKUPD #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 #endif
switch (pid = fork ()) switch (pid = fork ())
{ {