Changeset 15116 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Dec 8, 2008 4:05:46 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40514
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/debug.c
r15090 r15116 238 238 int rc = VINF_SUCCESS; 239 239 240 rc = RTStrFormatTypeRegister("IP4", print_ipv4_address, NULL); 241 AssertRC(rc); 240 static int g_fFormatRegistered; 241 242 if (!g_fFormatRegistered) 243 { 244 /* 245 * XXX Move this to IPRT using RTNETADDRIPV4. Use the specifier %RNAipv4. 246 */ 247 rc = RTStrFormatTypeRegister("IP4", print_ipv4_address, NULL); 248 AssertRC(rc); 249 } 242 250 243 251 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.