diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-01-08 07:13:41 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-01-08 07:13:41 +0100 |
commit | a383baac4604a7de1710e87fba0403e4a56d5472 (patch) | |
tree | 62d267f992fd15d00e9382f95199b138877435b7 | |
parent | complete sshd -g manpage default merge (diff) | |
download | openssh-a383baac4604a7de1710e87fba0403e4a56d5472.tar.xz openssh-a383baac4604a7de1710e87fba0403e4a56d5472.zip |
20010108
- (bal) Fixed another typo in cli.c
- (bal) OpenBSD Sync
- markus@cvs.openbsd.org 2001/01/07 21:26:55
[cli.c]
typo
- markus@cvs.openbsd.org 2001/01/07 21:26:55
[cli.c]
missing free, stevesk@pobox.com
- markus@cvs.openbsd.org 2001/01/07 19:06:25
[auth1.c]
missing free, stevesk@pobox.com
- markus@cvs.openbsd.org 2001/01/07 11:28:04
[log-client.c log-server.c log.c readconf.c servconf.c ssh.1
ssh.h sshd.8 sshd.c]
rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
syslog priority changes:
fatal() LOG_ERR -> LOG_CRIT
log() LOG_INFO -> LOG_NOTICE
-rw-r--r-- | ChangeLog | 20 | ||||
-rw-r--r-- | auth1.c | 3 | ||||
-rw-r--r-- | cli.c | 7 | ||||
-rw-r--r-- | log-client.c | 8 | ||||
-rw-r--r-- | log-server.c | 18 | ||||
-rw-r--r-- | log.c | 7 | ||||
-rw-r--r-- | readconf.c | 4 | ||||
-rw-r--r-- | servconf.c | 4 | ||||
-rw-r--r-- | ssh.1 | 6 | ||||
-rw-r--r-- | ssh.h | 4 | ||||
-rw-r--r-- | sshd.8 | 6 | ||||
-rw-r--r-- | sshd.c | 4 |
12 files changed, 59 insertions, 32 deletions
@@ -1,3 +1,23 @@ +20010108 + - (bal) Fixed another typo in cli.c + - (bal) OpenBSD Sync + - markus@cvs.openbsd.org 2001/01/07 21:26:55 + [cli.c] + typo + - markus@cvs.openbsd.org 2001/01/07 21:26:55 + [cli.c] + missing free, stevesk@pobox.com + - markus@cvs.openbsd.org 2001/01/07 19:06:25 + [auth1.c] + missing free, stevesk@pobox.com + - markus@cvs.openbsd.org 2001/01/07 11:28:04 + [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 + ssh.h sshd.8 sshd.c] + rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE + syslog priority changes: + fatal() LOG_ERR -> LOG_CRIT + log() LOG_INFO -> LOG_NOTICE + 20010107 - (bal) OpenBSD Sync - markus@cvs.openbsd.org 2001/01/06 11:23:27 @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.9 2000/12/27 12:34:49 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.10 2001/01/07 19:06:25 markus Exp $"); #ifdef HAVE_OSF_SIA # include <sia.h> @@ -479,6 +479,7 @@ do_authentication() packet_start(SSH_SMSG_SUCCESS); packet_send(); packet_write_wait(); + xfree(user); #ifdef WITH_AIXAUTHENTICATE /* We don't have a pty yet, so just label the line as "ssh" */ @@ -1,5 +1,5 @@ #include "includes.h" -RCSID("$OpenBSD: cli.c,v 1.2 2000/10/16 09:38:44 djm Exp $"); +RCSID("$OpenBSD: cli.c,v 1.4 2001/01/07 21:26:55 markus Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -145,9 +145,12 @@ cli_write(char* buf, int size) for (pos = 0; pos < len; pos += ret) { ret = write(cli_output, output + pos, len - pos); - if (ret == -1) + if (ret == -1) { + xfree(output); return -1; + } } + xfree(output); return 0; } diff --git a/log-client.c b/log-client.c index 505c8c337..bfcab30ba 100644 --- a/log-client.c +++ b/log-client.c @@ -36,12 +36,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: log-client.c,v 1.12 2000/09/12 20:53:10 markus Exp $"); +RCSID("$OpenBSD: log-client.c,v 1.13 2001/01/07 11:28:04 markus Exp $"); #include "xmalloc.h" #include "ssh.h" -static LogLevel log_level = SYSLOG_LEVEL_INFO; +static LogLevel log_level = SYSLOG_LEVEL_NOTICE; /* Initialize the log. * av0 program name (should be argv[0]) @@ -53,9 +53,9 @@ log_init(char *av0, LogLevel level, SyslogFacility ignored1, int ignored2) { switch (level) { case SYSLOG_LEVEL_QUIET: - case SYSLOG_LEVEL_ERROR: case SYSLOG_LEVEL_FATAL: - case SYSLOG_LEVEL_INFO: + case SYSLOG_LEVEL_ERROR: + case SYSLOG_LEVEL_NOTICE: case SYSLOG_LEVEL_VERBOSE: case SYSLOG_LEVEL_DEBUG1: case SYSLOG_LEVEL_DEBUG2: diff --git a/log-server.c b/log-server.c index 943c31417..2335a3ef4 100644 --- a/log-server.c +++ b/log-server.c @@ -36,14 +36,14 @@ */ #include "includes.h" -RCSID("$OpenBSD: log-server.c,v 1.17 2000/09/12 20:53:10 markus Exp $"); +RCSID("$OpenBSD: log-server.c,v 1.18 2001/01/07 11:28:05 markus Exp $"); #include <syslog.h> #include "packet.h" #include "xmalloc.h" #include "ssh.h" -static LogLevel log_level = SYSLOG_LEVEL_INFO; +static LogLevel log_level = SYSLOG_LEVEL_NOTICE; static int log_on_stderr = 0; static int log_facility = LOG_AUTH; @@ -58,9 +58,9 @@ log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr) { switch (level) { case SYSLOG_LEVEL_QUIET: - case SYSLOG_LEVEL_ERROR: case SYSLOG_LEVEL_FATAL: - case SYSLOG_LEVEL_INFO: + case SYSLOG_LEVEL_ERROR: + case SYSLOG_LEVEL_NOTICE: case SYSLOG_LEVEL_VERBOSE: case SYSLOG_LEVEL_DEBUG1: case SYSLOG_LEVEL_DEBUG2: @@ -133,15 +133,17 @@ do_log(LogLevel level, const char *fmt, va_list args) if (level > log_level) return; switch (level) { + case SYSLOG_LEVEL_FATAL: + txt = "fatal"; + pri = LOG_CRIT; + break; case SYSLOG_LEVEL_ERROR: txt = "error"; pri = LOG_ERR; break; - case SYSLOG_LEVEL_FATAL: - txt = "fatal"; - pri = LOG_ERR; + case SYSLOG_LEVEL_NOTICE: + pri = LOG_NOTICE; break; - case SYSLOG_LEVEL_INFO: case SYSLOG_LEVEL_VERBOSE: pri = LOG_INFO; break; @@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: log.c,v 1.12 2000/12/19 23:17:57 markus Exp $"); +RCSID("$OpenBSD: log.c,v 1.13 2001/01/07 11:28:05 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -71,7 +71,7 @@ log(const char *fmt,...) { va_list args; va_start(args, fmt); - do_log(SYSLOG_LEVEL_INFO, fmt, args); + do_log(SYSLOG_LEVEL_NOTICE, fmt, args); va_end(args); } @@ -209,12 +209,13 @@ static struct { { "QUIET", SYSLOG_LEVEL_QUIET }, { "FATAL", SYSLOG_LEVEL_FATAL }, { "ERROR", SYSLOG_LEVEL_ERROR }, - { "INFO", SYSLOG_LEVEL_INFO }, + { "NOTICE", SYSLOG_LEVEL_NOTICE }, { "VERBOSE", SYSLOG_LEVEL_VERBOSE }, { "DEBUG", SYSLOG_LEVEL_DEBUG1 }, { "DEBUG1", SYSLOG_LEVEL_DEBUG1 }, { "DEBUG2", SYSLOG_LEVEL_DEBUG2 }, { "DEBUG3", SYSLOG_LEVEL_DEBUG3 }, + { "INFO", SYSLOG_LEVEL_NOTICE }, /* backward compatible */ { NULL, 0 } }; diff --git a/readconf.c b/readconf.c index d90ba37bb..5b552815f 100644 --- a/readconf.c +++ b/readconf.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.52 2000/12/27 12:30:19 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.53 2001/01/07 11:28:05 markus Exp $"); #include "ssh.h" #include "readconf.h" @@ -804,7 +804,7 @@ fill_default_options(Options * options) if (options->user_hostfile2 == NULL) options->user_hostfile2 = SSH_USER_HOSTFILE2; if (options->log_level == (LogLevel) - 1) - options->log_level = SYSLOG_LEVEL_INFO; + options->log_level = SYSLOG_LEVEL_NOTICE; /* options->proxy_command should not be set by default */ /* options->user will be set in the main program if appropriate */ /* options->hostname will be set in the main program if appropriate */ diff --git a/servconf.c b/servconf.c index 8dd6e7d88..6604e3d23 100644 --- a/servconf.c +++ b/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.55 2000/12/19 23:17:57 markus Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.56 2001/01/07 11:28:06 markus Exp $"); #include "ssh.h" #include "servconf.h" @@ -129,7 +129,7 @@ fill_default_server_options(ServerOptions *options) if (options->log_facility == (SyslogFacility) (-1)) options->log_facility = SYSLOG_FACILITY_AUTH; if (options->log_level == (LogLevel) (-1)) - options->log_level = SYSLOG_LEVEL_INFO; + options->log_level = SYSLOG_LEVEL_NOTICE; if (options->rhosts_authentication == -1) options->rhosts_authentication = 0; if (options->rhosts_rsa_authentication == -1) @@ -34,7 +34,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: ssh.1,v 1.75 2001/01/04 22:35:32 djm Exp $ +.\" $OpenBSD: ssh.1,v 1.76 2001/01/07 11:28:06 markus Exp $ .Dd September 25, 1999 .Dt SSH 1 .Os @@ -814,8 +814,8 @@ Only the superuser can forward privileged ports. Gives the verbosity level that is used when logging messages from .Nm ssh . The possible values are: -QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG. -The default is INFO. +QUIET, FATAL, ERROR, NOTICE, VERBOSE and DEBUG. +The default is NOTICE. .It Cm NumberOfPasswordPrompts Specifies the number of password prompts before giving up. The argument to this keyword must be an integer. @@ -12,7 +12,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: ssh.h,v 1.56 2000/12/19 23:17:58 markus Exp $"); */ +/* RCSID("$OpenBSD: ssh.h,v 1.57 2001/01/07 11:28:06 markus Exp $"); */ #ifndef SSH_H #define SSH_H @@ -445,7 +445,7 @@ typedef enum { SYSLOG_LEVEL_QUIET, SYSLOG_LEVEL_FATAL, SYSLOG_LEVEL_ERROR, - SYSLOG_LEVEL_INFO, + SYSLOG_LEVEL_NOTICE, SYSLOG_LEVEL_VERBOSE, SYSLOG_LEVEL_DEBUG1, SYSLOG_LEVEL_DEBUG2, @@ -34,7 +34,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: sshd.8,v 1.78 2001/01/04 22:35:32 djm Exp $ +.\" $OpenBSD: sshd.8,v 1.79 2001/01/07 11:28:07 markus Exp $ .Dd September 25, 1999 .Dt SSHD 8 .Os @@ -492,8 +492,8 @@ The default is 600 (seconds). Gives the verbosity level that is used when logging messages from .Nm sshd . The possible values are: -QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG. -The default is INFO. +QUIET, FATAL, ERROR, NOTICE, VERBOSE and DEBUG. +The default is NOTICE. Logging with level DEBUG violates the privacy of users and is not recommended. .It Cm MaxStartups @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.145 2001/01/04 22:25:58 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.146 2001/01/07 11:28:07 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -673,7 +673,7 @@ main(int ac, char **av) * key (unless started from inetd) */ log_init(__progname, - options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level, + options.log_level == -1 ? SYSLOG_LEVEL_NOTICE : options.log_level, options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility, !silent && !inetd_flag); |