Skip to content

Commit cdfd83d

Browse files
MARC-GEOCODEnyalldawson
authored andcommittedMay 29, 2023
Missing one #ifndef QT_NO_SSL in qgsauthmanager.cpp
1 parent 07c3f17 commit cdfd83d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/core/auth/qgsauthmanager.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,10 @@ bool QgsAuthManager::eraseAuthenticationDatabase( bool backup, QString *backuppa
15851585

15861586
clearAllCachedConfigs();
15871587
updateConfigAuthMethods();
1588-
initSslCaches();
1588+
1589+
#ifndef QT_NO_SSL
1590+
initSslCaches();
1591+
#endif
15891592

15901593
emit authDatabaseChanged();
15911594

0 commit comments

Comments
 (0)
Please sign in to comment.