Changeset 107721 in vbox
- Timestamp:
- Jan 13, 2025 7:18:55 PM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166823
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/ftp-server.cpp
r106061 r107721 1318 1318 1319 1319 if (RT_SUCCESS(rc)) 1320 { 1320 1321 rc = rtFtpSetCWD(&pClient->State, pszPath); 1322 if (RT_SUCCESS(rc)) 1323 rc = rtFtpServerSendReplyRc(pClient, RTFTPSERVER_REPLY_OKAY); 1324 } 1321 1325 1322 1326 RTStrFree(pszPath); 1323 1327 1324 rc = rtFtpServerSendReplyRc(pClient, RTFTPSERVER_REPLY_OKAY);1325 1328 } 1326 1329 else … … 1445 1448 int32_t offUtc = Time.offUTC; 1446 1449 Assert(offUtc <= 840 && offUtc >= -840); 1447 char chSign; 1448 if (offUtc >= 0) 1449 chSign = '+'; 1450 else 1451 { 1452 chSign = '-'; 1450 if (offUtc < 0) 1453 1451 offUtc = -offUtc; 1454 }1455 1452 uint32_t offUtcHour = (uint32_t)offUtc / 60; 1456 1453 uint32_t offUtcMinute = (uint32_t)offUtc % 60; … … 2430 2427 { 2431 2428 AssertBreakStmt(cbRead <= sizeof(szCmd), rc = VERR_BUFFER_OVERFLOW); 2432 rc =rtFtpServerProcessCommands(pClient, szCmd, cbRead);2429 /* rc ignored, keep going */ rtFtpServerProcessCommands(pClient, szCmd, cbRead); 2433 2430 } 2434 2431 }
Note:
See TracChangeset
for help on using the changeset viewer.