diff options
-rw-r--r-- | module/mod_auth_singleid.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/module/mod_auth_singleid.c b/module/mod_auth_singleid.c index 53b1f04..3559ddd 100644 --- a/module/mod_auth_singleid.c +++ b/module/mod_auth_singleid.c @@ -514,17 +514,17 @@ set_attribute (cmd_parms *cmd, void *config, const char *val) } static const command_rec command_table[] = { - AP_INIT_TAKE1 ("SingleIdentifier", set_identifier, NULL, OR_AUTHCFG, - "The OpenID identifier we should perform ID selection on when authenticating" ), - AP_INIT_TAKE1 ("SingleRealm", set_realm, NULL, OR_AUTHCFG, + AP_INIT_TAKE1 ("SingleIdProvider", set_identifier, NULL, OR_AUTHCFG, + "The OpenID identifier we should perform identifier selection on when authenticating" ), + AP_INIT_TAKE1 ("SingleIdRealm", set_realm, NULL, OR_AUTHCFG, "The OpenID realm (ie: trust root) of this site."), - AP_INIT_TAKE1 ("SingleCache", set_cache_size, NULL, OR_AUTHCFG, + AP_INIT_TAKE1 ("SingleIdCache", set_cache_size, NULL, OR_AUTHCFG, "Enable and optionally set the size of the OpenID association cache"), - AP_INIT_TAKE1 ("SingleCookieName", set_cookie_name, NULL, OR_AUTHCFG, + AP_INIT_TAKE1 ("SingleIdCookie", set_cookie_name, NULL, OR_AUTHCFG, "Set the cookie name used once user has logged in via OpenID"), - AP_INIT_RAW_ARGS ("SingleUserMatch", set_user_match, NULL, OR_AUTHCFG, + AP_INIT_RAW_ARGS ("SingleIdUserMatch", set_user_match, NULL, OR_AUTHCFG, "How to convert an OpenID identifier into a user name" ), - AP_INIT_RAW_ARGS ("SingleAttribute", set_attribute, NULL, OR_AUTHCFG, + AP_INIT_RAW_ARGS ("SingleIdAttribute", set_attribute, NULL, OR_AUTHCFG, "Specify an attribute exchange url and alias."), { NULL } }; |