diff options
| author | Alexander Barton <alex@barton.de> | 2011-03-19 17:28:38 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2011-03-19 17:28:38 +0100 |
| commit | dcb1951efdc21fc175817bca67aed01bee9749b4 (patch) | |
| tree | 3ab9713c2810a64e87d6089b2465cc6837eba1ef | |
| parent | fa8b83e69b0d7edcfdcf8f0a4496c79f9c5ec161 (diff) | |
| download | ngircd-dcb1951efdc21fc175817bca67aed01bee9749b4.tar.gz ngircd-dcb1951efdc21fc175817bca67aed01bee9749b4.zip | |
Handle_GLOBAL(): don't use multi-line strings
They aren't supported by elder C compilers ...
| -rw-r--r-- | src/ngircd/conf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index fb8db2c4..d27a2ddb 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -1128,8 +1128,7 @@ Handle_GLOBAL( int Line, char *Var, char *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); |