diff options
author | mouring <mouring> | 2002-05-15 16:25:01 +0000 |
---|---|---|
committer | mouring <mouring> | 2002-05-15 16:25:01 +0000 |
commit | 92edb94e63507db04302131f74816d35af615c9d (patch) | |
tree | e267d624afb39dd9a8bb74de2ab71d6294cb97de /kex.c | |
parent | d3a8741e98601d84f04fc8f31cd7c8b4c12b1af4 (diff) | |
download | openssh-92edb94e63507db04302131f74816d35af615c9d.tar.gz |
- mouring@cvs.openbsd.org 2002/05/15 15:47:49
[kex.c monitor.c monitor_wrap.c sshd.c]
'monitor' variable clashes with at least one lame platform (NeXT). i
Renamed to 'pmonitor'. provos@
- (bal) Fixed up PAM case. I think.
Diffstat (limited to 'kex.c')
-rw-r--r-- | kex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: kex.c,v 1.49 2002/03/26 23:14:51 markus Exp $"); +RCSID("$OpenBSD: kex.c,v 1.50 2002/05/15 15:47:49 mouring Exp $"); #include <openssl/crypto.h> @@ -46,7 +46,7 @@ RCSID("$OpenBSD: kex.c,v 1.49 2002/03/26 23:14:51 markus Exp $"); /* Use privilege separation for sshd */ int use_privsep; -struct monitor *monitor; +struct monitor *pmonitor; /* prototype */ |