Changeset 95729 in vbox for trunk/src/VBox/Installer/win/Stub
- Timestamp:
- Jul 19, 2022 4:24:28 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Stub/VBoxStub.cpp
r95720 r95729 1073 1073 bool fEnableSilentCert = true; 1074 1074 bool fInstallTimestampCA = true; 1075 bool fForceTimestampCaInstall = true;1075 bool fForceTimestampCaInstall = false; 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 { "-- no-force-install-timestamp-ca", 'T',RTGETOPT_REQ_NOTHING },1104 { "--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 ForceTimestampCaInstall = fInstallTimestampCA = false;1166 fInstallTimestampCA = false; 1167 1167 break; 1168 1168 case 'T': 1169 fForceTimestampCaInstall = f alse;1169 fForceTimestampCaInstall = fInstallTimestampCA = true; 1170 1170 break; 1171 1171 #endif
Note:
See TracChangeset
for help on using the changeset viewer.