diff options
author | dtucker <dtucker> | 2004-05-13 06:39:33 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2004-05-13 06:39:33 +0000 |
commit | 54731eddb27352d688e307c5f85c5061c52f0610 (patch) | |
tree | b8c6b115e0b60e0e8d2563d14bc8e9af864c3c43 /monitor.c | |
parent | 0533e21177d7c736178c6f63c1d23910e40e889f (diff) | |
download | openssh-54731eddb27352d688e307c5f85c5061c52f0610.tar.gz |
- deraadt@cvs.openbsd.org 2004/05/11 19:01:43
[auth.c auth2-none.c authfile.c channels.c monitor.c monitor_mm.c
packet.c packet.h progressmeter.c session.c openbsd-compat/xmmap.c]
improve some code lint did not like; djm millert ok
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> @@ -1479,7 +1479,7 @@ mm_answer_term(int socket, Buffer *req) res = WIFEXITED(status) ? WEXITSTATUS(status) : 1; /* Terminate process */ - exit (res); + exit(res); } void |