diff options
author | Michi Henning <michi@zeroc.com> | 2003-07-18 05:45:27 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-07-18 05:45:27 +0000 |
commit | 22b67393a8af4f8207ad9154fc0afd0e40a739b9 (patch) | |
tree | 3dc883b52212090e40b1cd62c6682c1d41647b53 /cpp/src | |
parent | Merging changes for DatagramLimitException (diff) | |
download | ice-22b67393a8af4f8207ad9154fc0afd0e40a739b9.tar.bz2 ice-22b67393a8af4f8207ad9154fc0afd0e40a739b9.tar.xz ice-22b67393a8af4f8207ad9154fc0afd0e40a739b9.zip |
Fixed a typo.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp index 6a4a74c38df..468f8da6cfa 100644 --- a/cpp/src/Ice/UdpTransceiver.cpp +++ b/cpp/src/Ice/UdpTransceiver.cpp @@ -374,7 +374,7 @@ IceInternal::UdpTransceiver::setBufSize(const InstancePtr& instance) if(sizeRequested < _udpOverhead) { Warning out(_logger); - out << "Invalid " << prop << " of " << sizeRequested << " adjusted to " << dfltSize; + out << "Invalid " << prop << " value of " << sizeRequested << " adjusted to " << dfltSize; sizeRequested = dfltSize; } |