diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-19 22:13:48 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-19 22:13:48 +0000 |
commit | b0e3193258a60e1fee21a4a86ce886f28e5fa549 (patch) | |
tree | 85b7b62872ab697c91ebe6fe6ed54b132f024991 /apps | |
parent | c41a8b660cb152617d93452d615fe5c46bde9401 (diff) | |
download | ATCD-b0e3193258a60e1fee21a4a86ce886f28e5fa549.tar.gz |
*** empty log message ***
Diffstat (limited to 'apps')
-rw-r--r-- | apps/JAWS/clients/Caching/URL_Properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/JAWS/clients/Caching/URL_Properties.cpp b/apps/JAWS/clients/Caching/URL_Properties.cpp index d16fbd0cebe..9cc3c93cdbb 100644 --- a/apps/JAWS/clients/Caching/URL_Properties.cpp +++ b/apps/JAWS/clients/Caching/URL_Properties.cpp @@ -133,7 +133,7 @@ ACE_URL_Offer::encode (void *buf) const ACE_URL_Offer * ACE_URL_Offer::decode (void *buf) { - size_t a_size = (size_t) ntohl ((ACE_UINT32 *) buf); + size_t a_size = (size_t) ntohl (* (ACE_UINT32 *) buf); ACE_USHORT16 *url = (ACE_USHORT16 *) ((char *) buf + sizeof (ACE_UINT32)); for (int i = 0; url[i] != 0; i++) url[i] = ntohs (url[i]); |