[misc.c]
     debug->debug2
This commit is contained in:
Damien Miller 2003-05-14 13:41:39 +10:00
Родитель a201bb3f8a
Коммит ef095ce00a
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -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 $

4
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",