From 5ce9c0625e80ba10b8b067fef8856b7941c66d1f Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Mon, 23 Apr 2012 13:44:11 +0000 Subject: QPID-3510 - Created a separate option in CommonOptions for the client configuration file. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1329236 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/client/ConnectionImpl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/qpid/client/ConnectionImpl.cpp') diff --git a/cpp/src/qpid/client/ConnectionImpl.cpp b/cpp/src/qpid/client/ConnectionImpl.cpp index 963e56b9b2..85b0e8303e 100644 --- a/cpp/src/qpid/client/ConnectionImpl.cpp +++ b/cpp/src/qpid/client/ConnectionImpl.cpp @@ -115,10 +115,10 @@ public: ioThreads(0), connections(0) { - CommonOptions common("", QPIDC_CONF_FILE); + CommonOptions common("", "", QPIDC_CONF_FILE); IOThreadOptions options(c); - common.parse(0, 0, common.config, true); - options.parse(0, 0, common.config, true); + common.parse(0, 0, common.clientConfig, true); + options.parse(0, 0, common.clientConfig, true); maxIOThreads = (options.maxIOThreads != -1) ? options.maxIOThreads : 1; } -- cgit v1.2.1