Changeset 56866 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 8, 2015 2:04:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNetSniffer.cpp
r56292 r56866 32 32 #include <iprt/time.h> 33 33 #include <iprt/uuid.h> 34 #include <iprt/path.h> 34 35 #include <VBox/param.h> 35 36 … … 489 490 N_("Netsniffer cannot open '%s' for writing. The directory must exist and it must be writable for the current user"), pThis->szFilename); 490 491 492 char *pszPathReal = RTPathRealDup(pThis->szFilename); 493 if (pszPathReal) 494 { 495 LogRel(("Netsniffing to '%s'\n", pszPathReal)); 496 RTStrFree(pszPathReal); 497 } 498 else 499 LogRel(("Netsniffing to '%s'\n", pThis->szFilename)); 500 491 501 /* 492 502 * Write pcap header.
Note:
See TracChangeset
for help on using the changeset viewer.