aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-11-11 18:02:22 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2017-11-11 18:02:22 +0100
commit0edd59adc7d824487d275938e032663bc075f60f (patch)
treef89cc699f2af07bca8385bb9036ef018c522190a
parentc85248ad8620b2ca1a0a52d32c27f278e336f7cf (diff)
Fix warnings
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r--agl-identity-service/src/agl-identity-binding.c23
1 files changed, 7 insertions, 16 deletions
diff --git a/agl-identity-service/src/agl-identity-binding.c b/agl-identity-service/src/agl-identity-binding.c
index 39ead30..be118ea 100644
--- a/agl-identity-service/src/agl-identity-binding.c
+++ b/agl-identity-service/src/agl-identity-binding.c
@@ -154,7 +154,7 @@ static void do_logout()
static void on_forgerock_data(struct json_object *data, const char *error)
{
if (error) {
- ERROR("Can't get data: %s", error);
+ AFB_ERROR("Can't get data: %s", error);
} else {
do_login(data);
}
@@ -199,32 +199,23 @@ static void get (struct afb_req request)
afb_req_success(request, json_object_get(current_identity), NULL);
}
-static void success (struct afb_req request)
-{
- afb_req_success(request, NULL, NULL);
-}
-
static void on_nfc_subscribed(void *closure, int status, struct json_object *result)
{
- if(!status)
- {
- }
- else AFB_ERROR("Failed to subscribe to nfc events.");
+ if(status)
+ AFB_ERROR("Failed to subscribe to nfc events.");
}
static void on_nfc_started(void *closure, int status, struct json_object *result)
{
- if (!status)
- {
+ if (!status) {
afb_service_call("nfc", "subscribe", NULL, on_nfc_subscribed, NULL);
}
- else AFB_ERROR("Failed to start nfc polling.");
+ else
+ AFB_ERROR("Failed to start nfc polling.");
}
static int service_init()
{
- int rc;
-
agl_forgerock_setcb(on_forgerock_data);
event = afb_daemon_make_event("event");
if (!afb_event_is_valid(event))
@@ -243,7 +234,7 @@ static int service_init()
static void on_nfc_target_add(struct json_object *object)
{
struct json_object * json_uid;
- char *uid;
+ const char *uid;
if (json_object_object_get_ex(object, "UID", &json_uid))
{