From 029deb6ce6cd2ac4a2858edf786d364909687fc0 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 20 Aug 2016 13:42:31 -0400 Subject: [PATCH] LP#1485374: Add missing comma on line 667 of oils_auth.c. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes the following compiler error: oils_auth.c: In function ‘oilsAuthComplete’: oils_auth.c:668:9: error: expected ‘)’ before string constant "open-ils.auth_internal", ^ Signed-off-by: Jason Stephenson Signed-off-by: Kathy Lussier --- Open-ILS/src/c-apps/oils_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/c-apps/oils_auth.c b/Open-ILS/src/c-apps/oils_auth.c index 628efc88ec..0fd924fa21 100644 --- a/Open-ILS/src/c-apps/oils_auth.c +++ b/Open-ILS/src/c-apps/oils_auth.c @@ -664,7 +664,7 @@ int oilsAuthComplete( osrfMethodContext* ctx ) { if (barcode) jsonObjectSetKey(params, "barcode", jsonNewObject(barcode)); jsonObject* authEvt = oilsUtilsQuickReqCtx( // freed after password test - ctx + ctx, "open-ils.auth_internal", "open-ils.auth_internal.user.validate", params); jsonObjectFree(params); -- 2.43.2