LP#1485374: Add missing comma on line 667 of oils_auth.c. collab/miker/lp1485374-always-use-client-tz-rebase
authorJason Stephenson <jason@sigio.com>
Sat, 20 Aug 2016 17:42:31 +0000 (13:42 -0400)
committerJason Stephenson <jason@sigio.com>
Sat, 20 Aug 2016 17:42:31 +0000 (13:42 -0400)
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>
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);