From 18fe146b44d5c852e81b9c0d41a33650fc215689 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 3 Jul 2012 10:53:42 -0400 Subject: [PATCH] Clarified an unclear warning message --- webcit/siteconfig.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index 8625ba89d..a16d9cfe8 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -251,8 +251,9 @@ void load_siteconfig(void) Buf = NewStrBuf(); } else { - if (j == 0) - AppendImportantMessage(_("WARNING: Failed to parse Server Config; do you run a to new citserver?"), -1); + if (j == 0) { + syslog(LOG_WARNING, "The server sent more configuration data than this version of webcit is capable of changing. Unknown configuration values will remain unchanged."); + } j++; } } -- 2.30.2