diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-03-18 14:48:28 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-03-18 14:48:28 +0000 |
commit | 6f6dfcc39d8e4509f153aeb91a86a48c6de65a17 (patch) | |
tree | b73e0be0c1932da007d5f1b55cbb90036d33cd45 | |
parent | 72075a0031f21ce5aa942fa82fc23ddb472c97c8 (diff) |
previous commit removed "else" condition
-rw-r--r-- | usr.sbin/smtpd/control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/control.c b/usr.sbin/smtpd/control.c index 90f4da1b3a4..710ce3f27a5 100644 --- a/usr.sbin/smtpd/control.c +++ b/usr.sbin/smtpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.19 2009/03/08 20:39:49 gilles Exp $ */ +/* $OpenBSD: control.c,v 1.20 2009/03/18 14:48:27 gilles Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -993,7 +993,7 @@ session_socket_blockmode(int fd, enum blockmodes bm) if (bm == BM_NONBLOCK) flags |= O_NONBLOCK; - + else flags &= ~O_NONBLOCK; if ((flags = fcntl(fd, F_SETFL, flags)) == -1) |