Changeset 21865 for branches/gcc-kmk/src/iphlpapi/iphlpapi.cpp
- Timestamp:
- Dec 8, 2011, 2:32:54 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/iphlpapi/iphlpapi.cpp
r21563 r21865 60 60 61 61 //We don't want to use the OS2 version directly, but the one in wsock32 62 int WIN32API O DIN_gethostname (char * name, int namelen);62 int WIN32API OS2gethostname (char * name, int namelen); 63 63 64 64 ODINDEBUGCHANNEL(IPHLPAPI-IPHLPAPI) … … 274 274 // fill pipAdapter->IpAddressList 275 275 int cIfAddresses = 0; 276 for (int j = 0; j < cAddresses; ++j) 276 int j; 277 for (j = 0; j < cAddresses; ++j) 277 278 { 278 279 #ifdef DEBUG … … 580 581 memset(pFixedInfo,0,memNeeded); 581 582 582 O DIN_gethostname(fi->HostName,128);583 OS2gethostname(fi->HostName,128); 583 584 strcpy(fi->DomainName,_res.defdname); 584 585
Note:
See TracChangeset
for help on using the changeset viewer.