From: Marc Fournier Date: Tue, 24 Jun 2014 15:48:26 +0000 (+0200) Subject: correct typo in error message X-Git-Tag: collectd-5.5.0~289^2 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=88e327344e8cee8272776a28a030ffa84d201f8e 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); } }