- Timestamp:
- May 3, 2015 4:25:24 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99987
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r55613 r55614 733 733 vrc = VERR_BUFFER_OVERFLOW; 734 734 } 735 procInfo.mArguments.push_back("--"); /* '--version' is a valid directory name. */ 735 736 procInfo.mArguments.push_back(strPath); /* The directory we want to create. */ 736 737 } … … 876 877 procInfo.mArguments.push_back(strPath); 877 878 } 879 procInfo.mArguments.push_back("--"); /* strTemplate could be '--help'. */ 878 880 procInfo.mArguments.push_back(strTemplate); 879 881 } … … 1270 1272 { 1271 1273 procInfo.mArguments.push_back(Utf8Str("--machinereadable")); 1274 procInfo.mArguments.push_back("--"); /* strPath could be '--help', which is a valid filename. */ 1272 1275 procInfo.mArguments.push_back(strPath); /* The file we want to remove. */ 1273 1276 } … … 1437 1440 /* Construct arguments. */ 1438 1441 procInfo.mArguments.push_back(Utf8Str("--machinereadable")); 1442 if (fFollowSymlinks) 1443 procInfo.mArguments.push_back(Utf8Str("-L")); 1444 procInfo.mArguments.push_back("--"); /* strPath could be '--help', which is a valid filename. */ 1439 1445 procInfo.mArguments.push_back(strPath); 1440 1446 }
Note:
See TracChangeset
for help on using the changeset viewer.