aboutsummaryrefslogtreecommitdiff
path: root/logger.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-03 00:06:46 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-03 00:06:46 +0000
commit5e8b3ea19d045110e8e324cab3208de275d66244 (patch)
treeed3367b9af6e3ab34dcb302a2f46ca9d604e67ab /logger.c
parent58a408512b6d0eb4b0966ee2476cabb3a669b8cd (diff)
downloadbusybox-5e8b3ea19d045110e8e324cab3208de275d66244.tar.gz
Logger forgot to NULL terminate strings from stdin.
Diffstat (limited to 'logger.c')
-rw-r--r--logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/logger.c b/logger.c
index 21906401f..3d02979c8 100644
--- a/logger.c
+++ b/logger.c
@@ -130,6 +130,7 @@ extern int logger_main(int argc, char **argv)
while ((c = getc(stdin)) != EOF && i < sizeof(buf)) {
buf[i++] = c;
}
+ buf[i++] = '\0';
message = buf;
} else {
len = 1; /* for the '\0' */
@@ -147,7 +148,6 @@ extern int logger_main(int argc, char **argv)
openlog(name, option, (pri | LOG_FACMASK));
syslog(pri, "%s", message);
closelog();
-
return EXIT_SUCCESS;
}