From: Jason Stephenson Date: Sat, 20 Aug 2016 17:42:31 +0000 (-0400) Subject: LP#1485374: Add missing comma on line 667 of oils_auth.c. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=029deb6ce6cd2ac4a2858edf786d364909687fc0;p=working%2FEvergreen.git LP#1485374: Add missing comma on line 667 of oils_auth.c. 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 --- 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);