diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2012-06-22 12:30:27 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2012-06-22 12:30:27 +0000 |
commit | 8fc2130e3db1efed855a8b8cc89eb062891d619e (patch) | |
tree | 8b0df2d563bd6f54e044926bef48ca8fa40767d0 /usr.bin/ssh/monitor.c | |
parent | 248031f1b4553090b52faf61e09ab97538745d6b (diff) |
remove dead code following 'for (;;)' loops.
From Steve.McClellan at radisys com, ok markus@
Diffstat (limited to 'usr.bin/ssh/monitor.c')
-rw-r--r-- | usr.bin/ssh/monitor.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/monitor.c b/usr.bin/ssh/monitor.c index a46c3f38928..d8dfe615b1a 100644 --- a/usr.bin/ssh/monitor.c +++ b/usr.bin/ssh/monitor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor.c,v 1.116 2012/01/05 00:16:56 djm Exp $ */ +/* $OpenBSD: monitor.c,v 1.117 2012/06/22 12:30:26 dtucker Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * Copyright 2002 Markus Friedl <markus@openbsd.org> @@ -387,9 +387,6 @@ monitor_child_postauth(struct monitor *pmonitor) for (;;) monitor_read(pmonitor, mon_dispatch, NULL); - - close(pmonitor->m_sendfd); - pmonitor->m_sendfd = -1; } void |