Changeset 82840 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jan 23, 2020 9:36:40 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/ftp-server.cpp
r82839 r82840 1552 1552 } 1553 1553 1554 /* Anything else besides files and directores is not allowed; just don't show them at all for the moment. */ 1555 switch (pInfo->Attr.fMode & RTFS_TYPE_MASK) 1556 { 1557 case RTFS_TYPE_DIRECTORY: 1558 RT_FALL_THROUGH(); 1559 case RTFS_TYPE_FILE: 1560 break; 1561 1562 default: 1563 return VINF_SUCCESS; 1564 } 1565 1554 1566 /* Make sure there is space in the collection for the new entry. */ 1555 1567 if (pCollection->cEntries >= pCollection->cEntriesAllocated) … … 2282 2294 { 2283 2295 LogFlowFunc(("Handling command '%s'\n", papszArgs[0])); 2296 for (uint8_t a = 0; a < cArgs; a++) 2297 LogFlowFunc(("\targ[%RU8] = '%s'\n", a, papszArgs[a])); 2284 2298 2285 2299 unsigned i = 0;
Note:
See TracChangeset
for help on using the changeset viewer.