LP#1485374: Add missing comma on line 667 of oils_auth.c.
authorJason Stephenson <jason@sigio.com>
Sat, 20 Aug 2016 17:42:31 +0000 (13:42 -0400)
committerKathy Lussier <klussier@masslnc.org>
Fri, 27 Jan 2017 19:45:50 +0000 (14:45 -0500)
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 <jason@sigio.com>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Open-ILS/src/c-apps/oils_auth.c

index 628efc8..0fd924f 100644 (file)
@@ -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);