8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 21:23:03 +01:00

Correction - thanks to Claudio

This commit is contained in:
asfernandes 2007-04-18 15:18:22 +00:00
parent 09b2a772e8
commit b5f90e6b3c

View File

@ -366,9 +366,9 @@ Firebird::string IntlManager::getConfigInfo(const ConfObj& confObj)
values.append(el->getAttributeName(i));
}
if (configInfo.isEmpty())
if (!configInfo.isEmpty())
configInfo.append(";");
configInfo = string(el->name) + "=" + values;
configInfo.append(string(el->name) + "=" + values);
}
return configInfo;