From b5f90e6b3c221c1a39b942785d52bb155ead840c Mon Sep 17 00:00:00 2001 From: asfernandes Date: Wed, 18 Apr 2007 15:18:22 +0000 Subject: [PATCH] Correction - thanks to Claudio --- src/jrd/IntlManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jrd/IntlManager.cpp b/src/jrd/IntlManager.cpp index 5240afc356..0129117d99 100644 --- a/src/jrd/IntlManager.cpp +++ b/src/jrd/IntlManager.cpp @@ -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;