diff options
author | Damien Miller <djm@mindrot.org> | 2005-03-09 15:52:09 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-03-09 15:52:09 +1100 |
commit | 485bab886137bbf8b7ec8df82bd66dc6e5654371 (patch) | |
tree | 30ddb3f3417ad411a590b8c9a1e68b384df25376 | |
parent | f66530a91fd99a291a18c4c829e93730344fe4b9 (diff) |
- (djm) [log.c] Fix dumb syntax error; ok dtucker@
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | log.c | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -10,6 +10,7 @@ | |||
10 | OpenSSH 4.0 | 10 | OpenSSH 4.0 |
11 | - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec] | 11 | - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec] |
12 | [contrib/suse/openssh.spec] Update spec file versions | 12 | [contrib/suse/openssh.spec] Update spec file versions |
13 | - (djm) [log.c] Fix dumb syntax error; ok dtucker@ | ||
13 | - (djm) Release OpenSSH 4.0p1 | 14 | - (djm) Release OpenSSH 4.0p1 |
14 | 15 | ||
15 | 20050307 | 16 | 20050307 |
@@ -2320,4 +2321,4 @@ | |||
2320 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 2321 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
2321 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 2322 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
2322 | 2323 | ||
2323 | $Id: ChangeLog,v 1.3707 2005/03/09 00:03:08 djm Exp $ | 2324 | $Id: ChangeLog,v 1.3707.2.1 2005/03/09 04:52:09 djm Exp $ |
@@ -193,10 +193,10 @@ debug3(const char *fmt,...) | |||
193 | void | 193 | void |
194 | log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) | 194 | log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) |
195 | { | 195 | { |
196 | argv0 = av0; | ||
197 | #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT) | 196 | #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT) |
198 | struct syslog_data sdata = SYSLOG_DATA_INIT; | 197 | struct syslog_data sdata = SYSLOG_DATA_INIT; |
199 | #endif | 198 | #endif |
199 | argv0 = av0; | ||
200 | 200 | ||
201 | switch (level) { | 201 | switch (level) { |
202 | case SYSLOG_LEVEL_QUIET: | 202 | case SYSLOG_LEVEL_QUIET: |