X-Git-Url: http://git.archive.openwrt.org/?p=project%2Frpcd.git;a=blobdiff_plain;f=file.c;h=b0bdd99397f42107dc7a72b928875a008ed1519f;hp=ddbd61b8a114575677d8b236af674066341c4cac;hb=6a00d27ae5bc3985de32d1cad6c734816df0098a;hpb=dfa1d802b23e802e66d14ea4a2008866a801839b diff --git a/file.c b/file.c index ddbd61b..b0bdd99 100644 --- a/file.c +++ b/file.c @@ -381,7 +381,7 @@ static void rpc_file_exec_opipe_read_cb(struct ustream *s, int bytes) { struct rpc_file_exec_context *c = - container_of(s, struct rpc_file_exec_context, opipe); + container_of(s, struct rpc_file_exec_context, opipe.stream); if (ustream_read_buf_full(s)) rpc_file_exec_reply(c, UBUS_STATUS_NOT_SUPPORTED); @@ -391,7 +391,7 @@ static void rpc_file_exec_epipe_read_cb(struct ustream *s, int bytes) { struct rpc_file_exec_context *c = - container_of(s, struct rpc_file_exec_context, epipe); + container_of(s, struct rpc_file_exec_context, epipe.stream); if (ustream_read_buf_full(s)) rpc_file_exec_reply(c, UBUS_STATUS_NOT_SUPPORTED); @@ -401,7 +401,7 @@ static void rpc_file_exec_opipe_state_cb(struct ustream *s) { struct rpc_file_exec_context *c = - container_of(s, struct rpc_file_exec_context, opipe); + container_of(s, struct rpc_file_exec_context, opipe.stream); if (c->opipe.stream.eof && c->epipe.stream.eof) rpc_file_exec_reply(c, UBUS_STATUS_OK); @@ -411,7 +411,7 @@ static void rpc_file_exec_epipe_state_cb(struct ustream *s) { struct rpc_file_exec_context *c = - container_of(s, struct rpc_file_exec_context, epipe); + container_of(s, struct rpc_file_exec_context, epipe.stream); if (c->opipe.stream.eof && c->epipe.stream.eof) rpc_file_exec_reply(c, UBUS_STATUS_OK);