integrated changes from main repository

This commit is contained in:
Guenter Obiltschnig
2007-01-04 08:01:43 +00:00
parent 431807f25e
commit 3941965bce
6 changed files with 36 additions and 25 deletions

View File

@@ -1,7 +1,7 @@
//
// IPAddress.cpp
//
// $Id: //poco/1.3/Net/src/IPAddress.cpp#1 $
// $Id: //poco/1.3/Net/src/IPAddress.cpp#2 $
//
// Library: Net
// Package: NetCore
@@ -300,7 +300,7 @@ public:
}
}
if (i > 0) result.append(":");
if (i < 8) result.append(NumberFormatter::formatHex(words[i++]));
if (i < 8) result.append(NumberFormatter::formatHex(ntohs(words[i++])));
}
return result;
}