- Timestamp:
- Jun 18, 2014 5:27:31 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/NAT/proxy_rtadvd.c
r51574 r51653 274 274 ph = pbuf_alloc(PBUF_IP, 0, PBUF_RAM); 275 275 if (ph == NULL) { 276 DPRINTF0(("%s: failed to allocate RA header pbuf ", __func__));276 DPRINTF0(("%s: failed to allocate RA header pbuf\n", __func__)); 277 277 return; 278 278 } … … 280 280 pp = pbuf_alloc(PBUF_RAW, unsolicited_ra_payload_length, PBUF_ROM); 281 281 if (pp == NULL) { 282 DPRINTF0(("%s: failed to allocate RA payload pbuf ", __func__));282 DPRINTF0(("%s: failed to allocate RA payload pbuf\n", __func__)); 283 283 pbuf_free(ph); 284 284 return; … … 295 295 proxy_netif); 296 296 if (error != ERR_OK) { 297 DPRINTF0(("%s: failed to send RA (err=%d) ", __func__, error));297 DPRINTF0(("%s: failed to send RA (err=%d)\n", __func__, error)); 298 298 } 299 299
Note:
See TracChangeset
for help on using the changeset viewer.