diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-23 17:59:32 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-23 17:59:32 +0000 |
commit | 9614b79bd9c9ded7f55e9e704058347d2bebd0b6 (patch) | |
tree | 9edd2cd0c53041bc51353006441ca756c389dd5a | |
parent | 3c96961c46af3bc3077044bc61657f4476da1bd6 (diff) |
end request with 0, not NULL
ok markus@
-rw-r--r-- | usr.bin/ssh/sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 6cd020ba8a6..66e395bf53c 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.203 2001/07/26 17:18:22 stevesk Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.204 2001/08/23 17:59:31 camield Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -1110,7 +1110,7 @@ main(int ac, char **av) { struct request_info req; - request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL); + request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0); fromhost(&req); if (!hosts_access(&req)) { |