The return valuf of aul_rpc_port_prepare_stub() is changed to AUL return
values.
Requires:
- https://review.tizen.org/gerrit/#/c/platform/core/appfw/aul-1/+/229712/
Change-Id: I6d02a978617e5ed7412d20ee88145ece97defa56
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
if (ret != AUL_R_OK) {
LOGE("Failed to prepare stub %s:%s [ret : %d]",
target_appid.c_str(), port_name.c_str(), ret);
+ if (ret == AUL_R_EILLACC)
+ return -EILLEGALACCESS;
+
return ret;
}
}