Changeset 43018 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Aug 27, 2012 10:16:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r42995 r43018 1021 1021 }; 1022 1022 1023 int ch, rc , rc2;1023 int ch, rc; 1024 1024 RTGETOPTUNION ValueUnion; 1025 1025 RTGETOPTSTATE GetState; … … 1032 1032 uint32_t fFlags = 0; 1033 1033 uint32_t fOutputFlags = 0; 1034 int cNonOptions= 0;1034 int cNonOptions = 0; 1035 1035 1036 1036 while ( (ch = RTGetOpt(&GetState, &ValueUnion)) … … 1101 1101 else 1102 1102 { 1103 rc2 = RTDirRemoveRecursive(argv[i],1104 RTDIRRMREC_F_CONTENT_AND_DIR);1103 int rc2 = RTDirRemoveRecursive(argv[i], 1104 RTDIRRMREC_F_CONTENT_AND_DIR); 1105 1105 toolboxRmReport("", argv[i], RT_SUCCESS(rc2), rc2, 1106 1106 fOutputFlags, NULL); … … 1112 1112 else if (RTPathExists(argv[i]) || RTSymlinkExists(argv[i])) 1113 1113 { 1114 rc2 = RTFileDelete(argv[i]);1114 int rc2 = RTFileDelete(argv[i]); 1115 1115 toolboxRmReport("", argv[i], RT_SUCCESS(rc2), rc2, 1116 1116 fOutputFlags, NULL); … … 1203 1203 }; 1204 1204 1205 int ch, rc , rc2;1205 int ch, rc; 1206 1206 RTGETOPTUNION ValueUnion; 1207 1207 RTGETOPTSTATE GetState;
Note:
See TracChangeset
for help on using the changeset viewer.