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

@ -12,6 +12,9 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________
- Fixed small bug in the Crahmail/Crashecho parser when the last
address may left unread.
- Fixed various types of SMB corruption, especially on changing
message or updating attrbutes.

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);
}