diff options
author | Damien Miller <djm@mindrot.org> | 2024-10-15 23:28:21 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2024-10-15 23:28:21 +0200 |
commit | c537eeb1ae5f069450053b0027e64efe5bdb37d2 (patch) | |
tree | 10fe87a982dca2d07aa44bfdeb28cccefb4b10c4 | |
parent | fix capsicum sandbox (diff) | |
download | openssh-c537eeb1ae5f069450053b0027e64efe5bdb37d2.tar.xz openssh-c537eeb1ae5f069450053b0027e64efe5bdb37d2.zip |
fix breakage; missing saved_argc symbol
-rw-r--r-- | sshd-auth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sshd-auth.c b/sshd-auth.c index 53658cf11..986052cd3 100644 --- a/sshd-auth.c +++ b/sshd-auth.c @@ -126,6 +126,8 @@ static int inetd_flag = 0; /* Saved arguments to main(). */ static char **saved_argv; +static int saved_argc; + /* Daemon's agent connection */ int auth_sock = -1; |