Fixed bug in the Crashmail/CrashEcho config parser.

This commit is contained in:
Alexander S. Aganichev
2002-09-06 08:43:14 +00:00
parent 26caf9560e
commit 3b6ca67214
2 changed files with 5 additions and 1 deletions

View File

@@ -230,7 +230,8 @@ void gareafile::ReadCrashmailCfg(const char* file) {
if(not unconfirmed) {
AddNewArea(aa);
}
} else if(address[0]) {
}
if(address[0]) {
strxmerge(tmp, 100, address, "@", domain, NULL);
CfgAddress(tmp);
}