diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-05-11 19:01:44 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-05-11 19:01:44 +0000 |
commit | 864be3f922476a5c2cc5e3ec42c6881063ce787f (patch) | |
tree | d5f2fcc19905bc234c22d2a7e59c30969afd184c /usr.bin/ssh/monitor.c | |
parent | e58c86ca6a450ac471b70aba4aadaa52d0b1aaa3 (diff) |
improve some code lint did not like; djm millert ok
Diffstat (limited to 'usr.bin/ssh/monitor.c')
-rw-r--r-- | usr.bin/ssh/monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.c b/usr.bin/ssh/monitor.c index 9809e322699..23ab6f24960 100644 --- a/usr.bin/ssh/monitor.c +++ b/usr.bin/ssh/monitor.c @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: monitor.c,v 1.56 2004/05/09 01:19:27 djm Exp $"); +RCSID("$OpenBSD: monitor.c,v 1.57 2004/05/11 19:01:43 deraadt Exp $"); #include <openssl/dh.h> @@ -1300,7 +1300,7 @@ mm_answer_term(int socket, Buffer *req) res = WIFEXITED(status) ? WEXITSTATUS(status) : 1; /* Terminate process */ - exit (res); + exit(res); } void |