Changeset 82770 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Jan 15, 2020 2:34:38 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTFTPServer.cpp
r82732 r82770 47 47 #include <iprt/assert.h> 48 48 #include <iprt/ctype.h> 49 #include <iprt/err core.h>49 #include <iprt/err.h> 50 50 #include <iprt/file.h> 51 51 #include <iprt/getopt.h> … … 305 305 } 306 306 307 static DECLCALLBACK(int) onList(PRTFTPCALLBACKDATA pData, const char *pcszPath, void * *ppvData, size_t *pcbData)308 { 309 RT_NOREF(pData, pcszPath, p pvData, pcbData);310 311 return VINF_ SUCCESS;307 static DECLCALLBACK(int) onList(PRTFTPCALLBACKDATA pData, const char *pcszPath, void *pvData, size_t cbData, size_t *pcbRead) 308 { 309 RT_NOREF(pData, pcszPath, pvData, cbData, pcbRead); 310 311 return VINF_EOF; 312 312 } 313 313
Note:
See TracChangeset
for help on using the changeset viewer.