]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Handle_GLOBAL(): don't use multi-line strings
authorAlexander Barton <alex@barton.de>
Sat, 19 Mar 2011 16:28:38 +0000 (17:28 +0100)
committerAlexander Barton <alex@barton.de>
Sat, 19 Mar 2011 16:28:38 +0000 (17:28 +0100)
They aren't supported by elder C compilers ...

src/ngircd/conf.c

index fb8db2c4c3842b8f0c1b58f4466c317e634b79a8..d27a2ddbfa3a10e1e05d4be4df9342e069e0be7b 100644 (file)
@@ -1128,8 +1128,7 @@ Handle_GLOBAL( int Line, char *Var, char *Arg )
        }
 
        if (CheckLegacyNoOption(Var, Arg)) {
        }
 
        if (CheckLegacyNoOption(Var, Arg)) {
-               Config_Error(LOG_WARNING, "%s, line %d: \"No\"-Prefix has been removed, use "
-                               "\"%s = %s\" in [FEATURES] section instead",
+               Config_Error(LOG_WARNING, "%s, line %d: \"No\"-Prefix has been removed, use \"%s = %s\" in [FEATURES] section instead",
                                        NGIRCd_ConfFile, Line, NoNo(Var), InvertArg(Arg));
                if (strcasecmp(Var, "NoIdent") == 0)
                        WarnIdent(Line);
                                        NGIRCd_ConfFile, Line, NoNo(Var), InvertArg(Arg));
                if (strcasecmp(Var, "NoIdent") == 0)
                        WarnIdent(Line);