diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-08-20 09:04:49 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-08-20 09:04:49 +0000 |
commit | edbd71f4033d4424b0dcf05014a3180b10295866 (patch) | |
tree | 15adaf0fe2ba3f0d0d6eb51c067bb7ff9be2fe03 /src/sockutil.c | |
parent | 8dc143627967422b0afadb86ebd09dfcb486fc0d (diff) |
# BUILD : 1.7.15 (1135) # BUGS : 586 584 582 # NOTES : several fixes
git-svn-id: svn://svn.anope.org/anope/trunk@1135 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@858 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/sockutil.c')
-rw-r--r-- | src/sockutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sockutil.c b/src/sockutil.c index 2308dd528..bbf09f42c 100644 --- a/src/sockutil.c +++ b/src/sockutil.c @@ -725,7 +725,7 @@ char *ano_sockstrerror(int error) int ano_socksetnonb(ano_socket_t fd) { - int i = 1; + u_long i = 1; return (!ioctlsocket(fd, FIONBIO, &i) ? -1 : 1); } #endif |