diff options
author | Alan Conway <aconway@apache.org> | 2008-06-02 20:52:40 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-06-02 20:52:40 +0000 |
commit | 6c5f69a0e6e62fc220f3b4198dad1f202552e2ad (patch) | |
tree | 80b6a3ff24a6fe91adc36f3e83044ee44b00ac5a /cpp/src/qpid/client/Connection.cpp | |
parent | 1322ce3cf402f3bb74c2a411dcbdfd3779ed6d3b (diff) | |
download | qpid-python-6c5f69a0e6e62fc220f3b4198dad1f202552e2ad.tar.gz |
Added --syslog-name, --syslog-facility options.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@662558 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Connection.cpp')
-rw-r--r-- | cpp/src/qpid/client/Connection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Connection.cpp b/cpp/src/qpid/client/Connection.cpp index c108c3c86a..6994c7a400 100644 --- a/cpp/src/qpid/client/Connection.cpp +++ b/cpp/src/qpid/client/Connection.cpp @@ -53,7 +53,8 @@ void Connection::open( const std::string& vhost, uint16_t maxFrameSize) { - ConnectionSettings settings; + // FIXME aconway 2008-06-02: refactor ConnectionSettings to separate out command line parsing. + ConnectionSettings settings(""); settings.host = host; settings.port = port; settings.username = uid; |