diff options
author | 2003-12-09 17:29:04 +0000 | |
---|---|---|
committer | 2003-12-09 17:29:04 +0000 | |
commit | 6ecd2a96abab30317e3983197bc524b5fd9effba (patch) | |
tree | 248bdc013443c63b50eadfec1a6808e1eb78fc72 | |
parent | fix weird formatting issues in SYNOPSIS; (diff) | |
download | wireguard-openbsd-6ecd2a96abab30317e3983197bc524b5fd9effba.tar.xz wireguard-openbsd-6ecd2a96abab30317e3983197bc524b5fd9effba.zip |
fix -o and HUP; ok henning@
-rw-r--r-- | usr.bin/ssh/sshd.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index c46caf63969..383d4b90cfa 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -42,7 +42,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.282 2003/12/02 17:01:15 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.283 2003/12/09 17:29:04 markus Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -784,6 +784,7 @@ main(int ac, char **av) FILE *f; struct addrinfo *ai; char ntop[NI_MAXHOST], strport[NI_MAXSERV]; + char *line; int listen_sock, maxfd; int startup_p[2]; int startups = 0; @@ -876,9 +877,11 @@ main(int ac, char **av) } break; case 'o': - if (process_server_config_line(&options, optarg, + line = xstrdup(optarg); + if (process_server_config_line(&options, line, "command-line", 0) != 0) exit(1); + xfree(line); break; case '?': default: |