- Timestamp:
- Nov 5, 2010 6:17:08 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
r33807 r33808 1547 1547 /* Timelimit */ 1548 1548 &uTimeLimitMS); 1549 if (RT_FAILURE(rc)) 1550 {1551 VBoxServiceError("ControlExec: Failed to retrieve exec start command! Error: %Rrc\n", rc);1552 } 1553 else1549 #ifdef DEBUG 1550 VBoxServiceVerbose(3, "ControlExec: Start process szCmd=%s, uFlags=%u, szArgs=%s, szEnv=%s, szUser=%s, szPW=%s, uTimeout=%u\n", 1551 szCmd, uFlags, szArgs, szEnv, szUser, szPassword, uTimeLimitMS); 1552 #endif 1553 if (RT_SUCCESS(rc)) 1554 1554 { 1555 1555 rc = VBoxServiceControlExecProcess(uContextID, szCmd, uFlags, szArgs, uNumArgs, … … 1557 1557 szUser, szPassword, uTimeLimitMS); 1558 1558 } 1559 1559 else 1560 VBoxServiceError("ControlExec: Failed to retrieve exec start command! Error: %Rrc\n", rc); 1560 1561 VBoxServiceVerbose(3, "ControlExec: VBoxServiceControlExecHandleCmdStartProcess returned with %Rrc\n", rc); 1561 1562 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.