diff options
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshd.c,v 1.458 2015/08/20 22:32:42 deraadt Exp $ */ | 1 | /* $OpenBSD: sshd.c,v 1.459 2015/09/04 08:21:47 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1530,7 +1530,7 @@ main(int ac, char **av) | |||
1530 | no_daemon_flag = 1; | 1530 | no_daemon_flag = 1; |
1531 | break; | 1531 | break; |
1532 | case 'E': | 1532 | case 'E': |
1533 | logfile = xstrdup(optarg); | 1533 | logfile = optarg; |
1534 | /* FALLTHROUGH */ | 1534 | /* FALLTHROUGH */ |
1535 | case 'e': | 1535 | case 'e': |
1536 | log_stderr = 1; | 1536 | log_stderr = 1; |
@@ -1632,10 +1632,8 @@ main(int ac, char **av) | |||
1632 | #endif | 1632 | #endif |
1633 | 1633 | ||
1634 | /* If requested, redirect the logs to the specified logfile. */ | 1634 | /* If requested, redirect the logs to the specified logfile. */ |
1635 | if (logfile != NULL) { | 1635 | if (logfile != NULL) |
1636 | log_redirect_stderr_to(logfile); | 1636 | log_redirect_stderr_to(logfile); |
1637 | free(logfile); | ||
1638 | } | ||
1639 | /* | 1637 | /* |
1640 | * Force logging to stderr until we have loaded the private host | 1638 | * Force logging to stderr until we have loaded the private host |
1641 | * key (unless started from inetd) | 1639 | * key (unless started from inetd) |