diff options
author | David Zeuthen <davidz@redhat.com> | 2009-06-08 14:21:27 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2009-06-08 14:21:27 -0400 |
commit | e74ca1a5828b155df4fd88212eff904e88659d8a (patch) | |
tree | a24aeee24e20bf7c467478b42eb76a2ba2bf8aaf /src/polkitbackend/polkitbackendauthority.c | |
parent | 86e8003484056ce734e45e899ea5f17e144e6d2f (diff) | |
download | polkit-e74ca1a5828b155df4fd88212eff904e88659d8a.tar.gz |
Use .../extensions instead of ../backends for loading extensions
Diffstat (limited to 'src/polkitbackend/polkitbackendauthority.c')
-rw-r--r-- | src/polkitbackend/polkitbackendauthority.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/polkitbackend/polkitbackendauthority.c b/src/polkitbackend/polkitbackendauthority.c index 63f252d..8051ecf 100644 --- a/src/polkitbackend/polkitbackendauthority.c +++ b/src/polkitbackend/polkitbackendauthority.c @@ -1287,7 +1287,7 @@ polkit_backend_register_authority (PolkitBackendAuthority *authority, /** * polkit_backend_authority_get: * - * Loads all #GIOModule<!-- -->s from <literal>$(libdir)/polkit-1/backends</literal> to determine + * Loads all #GIOModule<!-- -->s from <filename>$(libdir)/polkit-1/extensions</filename> to determine * what implementation of #PolkitBackendAuthority to use. Then instantiates an object of the * implementation with the highest priority and unloads all other modules. * @@ -1323,7 +1323,7 @@ polkit_backend_authority_get (void) } /* load all modules */ - modules = g_io_modules_load_all_in_directory (PACKAGE_LIB_DIR "/polkit-1/backends"); + modules = g_io_modules_load_all_in_directory (PACKAGE_LIB_DIR "/polkit-1/extensions"); /* find all extensions; we have at least one here since we've registered the local backend */ authority_implementations = g_io_extension_point_get_extensions (ep); |