mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
parent
a201bb3f8a
commit
ef095ce00a
@ -9,6 +9,9 @@
|
|||||||
- markus@cvs.openbsd.org 2003/04/12 10:13:57
|
- markus@cvs.openbsd.org 2003/04/12 10:13:57
|
||||||
[cipher.c]
|
[cipher.c]
|
||||||
hide cipher details; ok djm@
|
hide cipher details; ok djm@
|
||||||
|
- markus@cvs.openbsd.org 2003/04/12 10:15:36
|
||||||
|
[misc.c]
|
||||||
|
debug->debug2
|
||||||
|
|
||||||
20030512
|
20030512
|
||||||
- (djm) Redhat spec: Don't install profile.d scripts when not
|
- (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;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
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
4
misc.c
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "misc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
@ -60,7 +60,7 @@ set_nonblock(int fd)
|
|||||||
debug2("fd %d is O_NONBLOCK", fd);
|
debug2("fd %d is O_NONBLOCK", fd);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
debug("fd %d setting O_NONBLOCK", fd);
|
debug2("fd %d setting O_NONBLOCK", fd);
|
||||||
val |= O_NONBLOCK;
|
val |= O_NONBLOCK;
|
||||||
if (fcntl(fd, F_SETFL, val) == -1)
|
if (fcntl(fd, F_SETFL, val) == -1)
|
||||||
debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s",
|
debug("fcntl(%d, F_SETFL, O_NONBLOCK): %s",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user