From aaffaf89d2216b6db90377e8ca0675aaab78ccab Mon Sep 17 00:00:00 2001 From: Dan Wells Date: Tue, 26 Jan 2016 13:36:14 -0500 Subject: [PATCH] LP#1468422 "Aut" to "Auth" typo fix Just cosmetic for now, but potentially for future sanity protection. Signed-off-by: Dan Wells Signed-off-by: Bill Erickson --- Open-ILS/src/c-apps/oils_auth_internal.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/c-apps/oils_auth_internal.c b/Open-ILS/src/c-apps/oils_auth_internal.c index c7621b107a..8f43e13114 100644 --- a/Open-ILS/src/c-apps/oils_auth_internal.c +++ b/Open-ILS/src/c-apps/oils_auth_internal.c @@ -46,7 +46,7 @@ int osrfAppInitialize() { osrfAppRegisterMethod( MODULENAME, "open-ils.auth_internal.session.create", - "oilsAutInternalCreateSession", + "oilsAuthInternalCreateSession", "Adds a user to the authentication cache to indicate " "the user is authenticated", 1, 0 ); @@ -54,7 +54,7 @@ int osrfAppInitialize() { osrfAppRegisterMethod( MODULENAME, "open-ils.auth_internal.user.validate", - "oilsAutInternalValidate", + "oilsAuthInternalValidate", "Determines whether a user should be allowed to login. " "Returns SUCCESS oilsEvent when the user is valid, otherwise " "returns a non-SUCCESS oilsEvent object", 1, 0 @@ -272,7 +272,7 @@ static oilsEvent* oilsAuthCheckLoginPerm(osrfMethodContext* ctx, - "workstation" -- workstation name */ -int oilsAutInternalCreateSession(osrfMethodContext* ctx) { +int oilsAuthInternalCreateSession(osrfMethodContext* ctx) { OSRF_METHOD_VERIFY_CONTEXT(ctx); const jsonObject* args = jsonObjectGetIndex(ctx->params, 0); @@ -365,7 +365,7 @@ int oilsAutInternalCreateSession(osrfMethodContext* ctx) { } -int oilsAutInternalValidate(osrfMethodContext* ctx) { +int oilsAuthInternalValidate(osrfMethodContext* ctx) { OSRF_METHOD_VERIFY_CONTEXT(ctx); const jsonObject* args = jsonObjectGetIndex(ctx->params, 0); -- 2.11.0