From b8c656e744a0a9110e5eb0ea5a6587efb181b20a Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 28 Jun 2000 15:22:41 +1000 Subject: - (djm) Added patch from Chris Adams to add OSF SIA support. Enable using "USE_SIA=1 ./configure [options]" --- sshd.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sshd.c') diff --git a/sshd.c b/sshd.c index 32a6fac7..a4749fbe 100644 --- a/sshd.c +++ b/sshd.c @@ -88,6 +88,7 @@ char *av0; /* Saved arguments to main(). */ char **saved_argv; +int saved_argc; /* * The sockets that the server is listening; this is used in the SIGHUP @@ -422,6 +423,7 @@ main(int ac, char **av) int listen_sock, maxfd; /* Save argv[0]. */ + saved_argc = ac; saved_argv = av; if (strchr(av[0], '/')) av0 = strrchr(av[0], '/') + 1; -- cgit v1.2.3