diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-10-03 14:28:20 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-10-03 14:28:20 +0200 |
commit | b6ac21341d634801fc90a994fe3b385c4d1d090f (patch) | |
tree | 9363151beb0c461e206bdd85d92eb3de59fb8ab4 /cpp/src | |
parent | Fixes to makecerts.py and instructions (diff) | |
download | ice-b6ac21341d634801fc90a994fe3b385c4d1d090f.tar.bz2 ice-b6ac21341d634801fc90a994fe3b385c4d1d090f.tar.xz ice-b6ac21341d634801fc90a994fe3b385c4d1d090f.zip |
Fix for 7406 and issue with space in path passed to icehashpassword.py
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/winrt/StreamEndpointI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/winrt/StreamEndpointI.cpp b/cpp/src/Ice/winrt/StreamEndpointI.cpp index aff7ac35972..84156e4f6f7 100644 --- a/cpp/src/Ice/winrt/StreamEndpointI.cpp +++ b/cpp/src/Ice/winrt/StreamEndpointI.cpp @@ -184,7 +184,7 @@ IceInternal::StreamEndpointI::acceptor(const string&) const ostringstream os; os << "SSL server endpoints are not supported with UWP applications"; ex.unsupportedFeature = os.str(); - throw ex; + throw ex; } return new StreamAcceptor(const_cast<StreamEndpointI*>(this), _instance, _host, _port); } |