From: Marc Fournier Date: Tue, 24 Jun 2014 15:48:26 +0000 (+0200) Subject: correct typo in error message X-Git-Tag: collectd-5.3.2~29 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=c76551aef20151a34a785f756a7dc359ba1b3865;p=collectd.git correct typo in error message --- diff --git a/src/syslog.c b/src/syslog.c index 1a70fd00..834ba79c 100644 --- a/src/syslog.c +++ b/src/syslog.c @@ -50,7 +50,7 @@ static int sl_config (const char *key, const char *value) if (log_level < 0) { log_level = LOG_INFO; - ERROR ("syslog: invalid loglevel [%s] defauling to 'info'", value); + ERROR ("syslog: invalid loglevel [%s] defaulting to 'info'", value); return (1); } }