From 136a8fc3558a2072bbfb6a43b0e68a5d31c51fad Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 19 Feb 2001 15:13:44 +0000 Subject: Update to sudo-1.6.3p6 --- usr.bin/sudo/logging.c | 5 +++-- usr.bin/sudo/version.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'usr.bin/sudo') diff --git a/usr.bin/sudo/logging.c b/usr.bin/sudo/logging.c index f735d1f22e9..327860bea0f 100644 --- a/usr.bin/sudo/logging.c +++ b/usr.bin/sudo/logging.c @@ -112,7 +112,8 @@ do_syslog(pri, msg) /* * Log the full line, breaking into multiple syslog(3) calls if necessary */ - for (p = msg, count = 0; count < strlen(msg) / MAXSYSLOGLEN + 1; count++) { + for (p = msg, count = 0; *p && count < strlen(msg) / MAXSYSLOGLEN + 1; + count++) { if (strlen(p) > MAXSYSLOGLEN) { /* * Break up the line into what will fit on one syslog(3) line @@ -135,7 +136,7 @@ do_syslog(pri, msg) *tmp = save; /* restore saved character */ /* Eliminate leading whitespace */ - for (p = tmp; *p != ' '; p++) + for (p = tmp; *p != ' ' && *p !='\0'; p++) ; } else { if (count == 0) diff --git a/usr.bin/sudo/version.h b/usr.bin/sudo/version.h index 38e5570ce0f..3e1f9534b16 100644 --- a/usr.bin/sudo/version.h +++ b/usr.bin/sudo/version.h @@ -37,6 +37,6 @@ #ifndef _SUDO_VERSION_H #define _SUDO_VERSION_H -static const char version[] = "1.6.3p5"; +static const char version[] = "1.6.3p6"; #endif /* _SUDO_VERSION_H */ -- cgit v1.2.3