Skip to content

Commit

Permalink
Also accept libauthmethod*.dll named authentication plugins on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Sep 7, 2021
1 parent 5cf9ee1 commit 0132ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/auth/qgsauthmethodregistry.cpp
Expand Up @@ -114,7 +114,7 @@ void QgsAuthMethodRegistry::init()
typedef QgsAuthMethodMetadata *factory_function( );

#if defined(Q_OS_WIN) || defined(__CYGWIN__)
mLibraryDirectory.setNameFilters( QStringList( "authmethod_*.dll" ) );
mLibraryDirectory.setNameFilters( QStringList( "*authmethod_*.dll" ) );
#else
mLibraryDirectory.setNameFilters( QStringList( QStringLiteral( "*authmethod_*.so" ) ) );
#endif
Expand Down

0 comments on commit 0132ff1

Please sign in to comment.