Update copyright dates
[src/app-framework-binder.git] / src / afb-hreq.c
index 6be2ee5..7e3d7ce 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016-2019 "IoT.bzh"
+ * Copyright (C) 2015-2020 "IoT.bzh"
  * Author: José Bollo <jose.bollo@iot.bzh>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -42,7 +42,6 @@
 #include "afb-hreq.h"
 #include "afb-hsrv.h"
 #include "afb-session.h"
-#include "afb-cred.h"
 #include "afb-token.h"
 #include "afb-error-text.h"
 #include "verbose.h"
@@ -345,7 +344,6 @@ static void req_destroy(struct afb_xreq *xreq)
        json_object_put(hreq->json);
        free((char*)hreq->xreq.request.called_api);
        free((char*)hreq->xreq.request.called_verb);
-       afb_cred_unref(hreq->xreq.cred);
        free(hreq);
 }
 
@@ -1017,7 +1015,7 @@ int afb_hreq_init_context(struct afb_hreq *hreq)
        if (token)
                afb_token_get(&tok, token);
 
-       return afb_context_connect(&hreq->xreq.context, uuid, tok);
+       return afb_context_connect(&hreq->xreq.context, uuid, tok, NULL);
 }
 
 int afb_hreq_init_cookie(int port, const char *path, int maxage)