Fix the syslog starting failure

Should use "-Cxx" instead of "-C xx" as command line for syslog in busybox

Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
This commit is contained in:
Zhai Edwin 2010-06-09 14:55:13 +08:00 committed by Joshua Lock
parent 2e54470a0b
commit aa913534e4
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ if [ -f /etc/syslog.conf ]; then
LOG_REMOTE=0
for D in $DESTINATION; do
if [ "$D" = "buffer" ]; then
SYSLOG_ARGS="$SYSLOG_ARGS -C $BUFFERSIZE"
SYSLOG_ARGS="$SYSLOG_ARGS -C$BUFFERSIZE"
LOG_LOCAL=1
elif [ "$D" = "file" ]; then
if [ -n "$LOGFILE" ]; then