diff options
author | 1999-11-11 23:36:52 +0000 | |
---|---|---|
committer | 1999-11-11 23:36:52 +0000 | |
commit | bdc6d6beec4c8d57c40f0d90dec3231dadc65843 (patch) | |
tree | b957e23ac1b407c18a09b4bb4fdd2252ca999ac1 /usr.bin/ssh/ssh.c | |
parent | print _all_ bad options found in configfile (diff) | |
download | wireguard-openbsd-bdc6d6beec4c8d57c40f0d90dec3231dadc65843.tar.xz wireguard-openbsd-bdc6d6beec4c8d57c40f0d90dec3231dadc65843.zip |
make all access to options via 'extern Options options'
and 'extern ServerOptions options' respectively;
options are no longer passed as arguments:
* make options handling more consistent
* remove #include "readconf.h" from ssh.h
* readconf.h is only included if necessary
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 8cd6b7e3ab2..14cc02f7279 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada. */ #include "includes.h" -RCSID("$Id: ssh.c,v 1.27 1999/11/10 23:36:44 markus Exp $"); +RCSID("$Id: ssh.c,v 1.28 1999/11/11 23:36:53 markus Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -590,7 +590,7 @@ main(int ac, char **av) /* Log into the remote system. This never returns if the login fails. */ ssh_login(host_private_key_loaded, host_private_key, - host, &hostaddr, &options, original_real_uid); + host, &hostaddr, original_real_uid); /* We no longer need the host private key. Clear it now. */ if (host_private_key_loaded) |