diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-02 09:57:41 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-02 09:57:41 +0000 |
commit | ebeaea04dc2b2e75048262355fbfb970e5c92595 (patch) | |
tree | a227af19fff60bdf067a9c0c34555a56a380d2b0 /sysklogd | |
parent | d24d5c84c2ef76573eb621b9e349e8cb83ae1ae3 (diff) | |
download | busybox-ebeaea04dc2b2e75048262355fbfb970e5c92595.tar.gz |
logger: fix a problem of losing all argv except first
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/logger.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index df5d8ff7e..6e1debd67 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c @@ -107,7 +107,7 @@ int logger_main(int argc, char **argv) argv += optind; if (!argc) { #define strbuf bb_common_bufsiz1 - while (fgets(strbuf, BUFSIZ, stdin)) { + while (fgets(strbuf, COMMON_BUFSIZE, stdin)) { if (strbuf[0] && NOT_LONE_CHAR(strbuf, '\n') ) { @@ -117,11 +117,11 @@ int logger_main(int argc, char **argv) } } else { char *message = NULL; - int len = 1; /* for NUL */ + int len = 0; int pos = 0; do { len += strlen(*argv) + 1; - message = xrealloc(message, len); + message = xrealloc(message, len + 1); sprintf(message + pos, " %s", *argv), pos = len; } while (*++argv); |