summaryrefslogtreecommitdiffstats
path: root/misc.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-14 13:41:39 +1000
committerDamien Miller <djm@mindrot.org>2003-05-14 13:41:39 +1000
commitef095ce00ab8e6ff4257839b6fedc2efcbc80ea8 (patch)
tree3899c6356ca545a968e7f86849010bf1ed66fc14 /misc.c
parenta201bb3f8a55fed2e75a3d6cfcaf3721497c15f3 (diff)
- markus@cvs.openbsd.org 2003/04/12 10:15:36
[misc.c] debug->debug2
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index 512fb22f..ff196619 100644
--- a/misc.c
+++ b/misc.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: misc.c,v 1.20 2002/12/13 10:03:15 markus Exp $");
+RCSID("$OpenBSD: misc.c,v 1.21 2003/04/12 10:15:36 markus Exp $");
#include "misc.h"
#include "log.h"
@@ -60,7 +60,7 @@ set_nonblock(int fd)
debug2("fd %d is O_NONBLOCK", fd);
return;
}
- debug("fd %d setting O_NONBLOCK", fd);
+ debug2("fd %d setting O_NONBLOCK", fd);
val |= O_NONBLOCK;
if (fcntl(fd, F_SETFL, val) == -1)
debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s",