1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
|
#if defined(_WIN32)
fossil_print(" OpenSSL-winstore: %s\n",
(SSLeay()>=0x30200000 && SSLeay()!=0x30500000) ? "Yes" : "No");
if( verbose ){
fossil_print("\n"
" OpenSSL 3.2.0, or newer, but not version 3.5.0 due to a bug,\n"
" the root certificates are managed by the Windows operating\n"
" system. The installed root certificates are listed by the\n"
" command:\n\n"
" certutil -store \"ROOT\"\n\n"
);
}
#endif /* _WIN32 */
if( zUsed==0 ) zUsed = "";
fossil_print(" Trust store used: %s\n", zUsed);
|
|
|
|
|
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
|
#if defined(_WIN32)
fossil_print(" OpenSSL-winstore: %s\n",
(SSLeay()>=0x30200000 && SSLeay()!=0x30500000) ? "Yes" : "No");
if( verbose ){
fossil_print("\n"
" OpenSSL 3.2.0, or newer, but not version 3.5.0 due to a bug,\n"
" are able to use the root certificates managed by the Windows\n"
" operating system. The installed root certificates are listed\n"
" by the command:\n\n"
" certutil -store \"ROOT\"\n\n"
);
}
#endif /* _WIN32 */
if( zUsed==0 ) zUsed = "";
fossil_print(" Trust store used: %s\n", zUsed);
|