Changeset 42178 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Jul 17, 2012 12:35:07 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79176
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r42176 r42178 591 591 " websrvauthlibrary default|null|<library> |\n" 592 592 " vrdeextpack null|<library> |\n" 593 " autostartdbpath null|<folder> |\n" 593 594 " loghistorycount <value>\n" 594 595 "\n"); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r42176 r42178 857 857 CHECK_ERROR(systemProperties, COMSETTER(LogHistoryCount)(uVal)); 858 858 } 859 else if (!strcmp(a->argv[0], "autostartdbpath")) 860 { 861 /* disable? */ 862 if (!strcmp(a->argv[1], "null")) 863 CHECK_ERROR(systemProperties, COMSETTER(AutostartDatabasePath)(NULL)); 864 else 865 CHECK_ERROR(systemProperties, COMSETTER(AutostartDatabasePath)(Bstr(a->argv[1]).raw())); 866 } 859 867 else 860 868 return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", a->argv[0]);
Note:
See TracChangeset
for help on using the changeset viewer.