Don't shadow.

This commit is contained in:
Ben Laurie 1999-04-03 14:52:01 +00:00
parent cf897932ca
commit 121bd68d1c

View File

@ -344,8 +344,8 @@ char *ip;
if (s == INVALID_SOCKET) goto err;
#if defined SOL_SOCKET && defined SO_REUSEADDR
{
int i = 1;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &i, sizeof i);
int j = 1;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &j, sizeof j);
}
#endif
if (bind(s,(struct sockaddr *)&server,sizeof(server)) == -1)