Clarified an unclear warning message
authorArt Cancro <ajc@uncensored.citadel.org>
Tue, 3 Jul 2012 14:53:42 +0000 (10:53 -0400)
committerArt Cancro <ajc@uncensored.citadel.org>
Tue, 3 Jul 2012 14:53:42 +0000 (10:53 -0400)
webcit/siteconfig.c

index 8625ba89d2db03b093df5bc200cab31b3a1e5cde..a16d9cfe83a44007a7252f7c22b046e2438a529c 100644 (file)
@@ -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++;
                }
        }