Skip to content
Snippets Groups Projects
Commit e0f00b77 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix

Rev: src/fd_control.c:1.27
parent 7066e192
Branches
Tags
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
#include "error.h" #include "error.h"
#include "fdlib.h" #include "fdlib.h"
RCSID("$Id: fd_control.c,v 1.26 1999/09/13 23:16:33 grubba Exp $"); RCSID("$Id: fd_control.c,v 1.27 1999/09/14 21:07:20 hubbe Exp $");
#else /* TESTING */ #else /* TESTING */
...@@ -121,7 +121,7 @@ int query_nonblocking(int fd) ...@@ -121,7 +121,7 @@ int query_nonblocking(int fd)
#else #else
#ifdef USE_FCNTL_O_NONBLOCK #ifdef USE_FCNTL_O_NONBLOCK
ret=return fcntl(fd, F_GETFL, 0) & O_NONBLOCK; ret=fcntl(fd, F_GETFL, 0) & O_NONBLOCK;
#else #else
#ifdef USE_FCNTL_FNDELAY #ifdef USE_FCNTL_FNDELAY
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment