Changeset 95720 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Jul 18, 2022 5:58:52 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Stub/VBoxStub.cpp
r95699 r95720 1073 1073 bool fEnableSilentCert = true; 1074 1074 bool fInstallTimestampCA = true; 1075 bool fForceTimestampCaInstall = false;1075 bool fForceTimestampCaInstall = true; 1076 1076 #endif 1077 1077 bool fIgnoreReboot = false; … … 1102 1102 { "/no-silent-cert", 'c', RTGETOPT_REQ_NOTHING }, 1103 1103 { "--no-install-timestamp-ca", 't', RTGETOPT_REQ_NOTHING }, 1104 { "-- force-install-timestamp-ca", 'T',RTGETOPT_REQ_NOTHING },1104 { "--no-force-install-timestamp-ca", 'T', RTGETOPT_REQ_NOTHING }, 1105 1105 #endif 1106 1106 { "--logging", 'l', RTGETOPT_REQ_NOTHING }, … … 1164 1164 break; 1165 1165 case 't': 1166 f InstallTimestampCA = false;1166 fForceTimestampCaInstall = fInstallTimestampCA = false; 1167 1167 break; 1168 1168 case 'T': 1169 fForceTimestampCaInstall = f InstallTimestampCA = true;1169 fForceTimestampCaInstall = false; 1170 1170 break; 1171 1171 #endif
Note:
See TracChangeset
for help on using the changeset viewer.