diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-11-27 21:37:20 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-11-27 21:37:20 +0000 |
commit | 3ba2afaa02c901f07fec4ad6057e53b5f660fe82 (patch) | |
tree | feb214cb9e253ebbafaab02426377e95495ea317 /cpp/src/Ice/Exception.cpp | |
parent | Files required to generate RSA certificates for new ice installs. (diff) | |
download | ice-3ba2afaa02c901f07fec4ad6057e53b5f660fe82.tar.bz2 ice-3ba2afaa02c901f07fec4ad6057e53b5f660fe82.tar.xz ice-3ba2afaa02c901f07fec4ad6057e53b5f660fe82.zip |
Added host attribute to DNSException.
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index d31c97e6718..d471a7b6b55 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -239,7 +239,7 @@ void Ice::DNSException::ice_print(ostream& out) const { Exception::ice_print(out); - out << ":\nDNS error: " << errorToStringDNS(error); + out << ":\nDNS error: " << errorToStringDNS(error) << "\nhost: " << host; } void |