- markus@cvs.openbsd.org 2003/04/12 10:15:36
     [misc.c]
     debug->debug2
diff --git a/ChangeLog b/ChangeLog
index c9cfedf..9c1d96e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
    - markus@cvs.openbsd.org 2003/04/12 10:13:57
      [cipher.c]
      hide cipher details; ok djm@
+   - markus@cvs.openbsd.org 2003/04/12 10:15:36
+     [misc.c]
+     debug->debug2
 
 20030512
  - (djm) Redhat spec: Don't install profile.d scripts when not 
@@ -1396,4 +1399,4 @@
      save auth method before monitor_reset_key_state(); bugzilla bug #284;
      ok provos@
 
-$Id: ChangeLog,v 1.2679 2003/05/14 03:41:23 djm Exp $
+$Id: ChangeLog,v 1.2680 2003/05/14 03:41:39 djm Exp $
diff --git a/misc.c b/misc.c
index 512fb22..ff19661 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 @@
 		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",