X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fafb-ws-json1.c;h=c9be94d02cfd3aba3ce97a014be2b4c8177b15b5;hb=b57505f0f80f6394f04a041df6e808c857b01d4b;hp=88f9b358fe6e2cdea3e971bea9ae7978b95c23de;hpb=cee4240979b3b9c4ebb877631e66157918598c3d;p=src%2Fapp-framework-binder.git diff --git a/src/afb-ws-json1.c b/src/afb-ws-json1.c index 88f9b358..c9be94d0 100644 --- a/src/afb-ws-json1.c +++ b/src/afb-ws-json1.c @@ -423,10 +423,8 @@ static void aws_emit(struct afb_ws_json1 *aws, int code, const char *id, size_t static void wsreq_reply(struct afb_wsreq *wsreq, int retcode, const char *status, const char *info, json_object *resp) { - const char *uuid = afb_context_sent_uuid(&wsreq->context); - const char *token = afb_context_sent_token(&wsreq->context); - struct json_object *reply = afb_msg_json_reply(status, info, resp, token, uuid); - aws_emit(wsreq->aws, retcode, wsreq->id, wsreq->idlen, reply, token); + struct json_object *reply = afb_msg_json_reply(status, info, resp, &wsreq->context, NULL); + aws_emit(wsreq->aws, retcode, wsreq->id, wsreq->idlen, reply, afb_context_sent_token(&wsreq->context)); } static void wsreq_fail(struct afb_wsreq *wsreq, const char *status, const char *info)