diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-16 08:49:39 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-16 08:49:39 +0000 |
commit | ec1b8c96f01be1c00ffae192eb5c1c20d6542fc1 (patch) | |
tree | c04385cfd1fb8cac1f9b667241c819cbd6c2668b /usr.bin | |
parent | 2143edf026f512da5bb2b8f956083e2891cf1d0b (diff) |
typo; dunlap@apl.washington.edu
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/misc.c b/usr.bin/ssh/misc.c index 3e98cd95c94..e9311e9ea2d 100644 --- a/usr.bin/ssh/misc.c +++ b/usr.bin/ssh/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.9 2001/05/19 19:43:57 stevesk Exp $ */ +/* $OpenBSD: misc.c,v 1.10 2001/06/16 08:49:38 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: misc.c,v 1.9 2001/05/19 19:43:57 stevesk Exp $"); +RCSID("$OpenBSD: misc.c,v 1.10 2001/06/16 08:49:38 markus Exp $"); #include "misc.h" #include "log.h" @@ -82,7 +82,7 @@ unset_nonblock(int fd) debug2("fd %d is not O_NONBLOCK", fd); return; } - debug("fd %d setting O_NONBLOCK", fd); + debug("fd %d clearing O_NONBLOCK", fd); val &= ~O_NONBLOCK; if (fcntl(fd, F_SETFL, val) == -1) if (errno != ENODEV) |