From e0f00b772a1c077feb4593d8c54385ce79d0b887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Tue, 14 Sep 1999 14:07:20 -0700 Subject: [PATCH] bugfix Rev: src/fd_control.c:1.27 --- src/fd_control.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fd_control.c b/src/fd_control.c index ab7ae4fef5..9334625ae2 100644 --- a/src/fd_control.c +++ b/src/fd_control.c @@ -10,7 +10,7 @@ #include "error.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 */ @@ -121,7 +121,7 @@ int query_nonblocking(int fd) #else #ifdef USE_FCNTL_O_NONBLOCK - ret=return fcntl(fd, F_GETFL, 0) & O_NONBLOCK; + ret=fcntl(fd, F_GETFL, 0) & O_NONBLOCK; #else #ifdef USE_FCNTL_FNDELAY -- GitLab