diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-13 02:28:29 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-13 02:33:42 -0600 |
commit | 4e75505019e80bd635b279fc98e1ad670d1e1505 (patch) | |
tree | 5a0b67ed4a52341b1004f3e5e203b07c62f17f8e /lib9p/srv.c | |
parent | b267e241f0545b68864fb2bcf593c02f3bc2cf19 (diff) |
fixup! lib9p: Split lib9p_{validate,unmarshal,marshal} into _Tmsg and _Rmsg variants
Diffstat (limited to 'lib9p/srv.c')
-rw-r--r-- | lib9p/srv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib9p/srv.c b/lib9p/srv.c index ac65699..82b5257 100644 --- a/lib9p/srv.c +++ b/lib9p/srv.c @@ -610,7 +610,7 @@ static void handle_message(struct srv_req *ctx) { assert(host_req); enum lib9p_msg_type typ; lib9p_Tmsg_unmarshal(&ctx->basectx, ctx->net_bytes, - &typ, host_req); + &typ, host_req); srv_msglog(ctx, typ, host_req); /* Handle it. */ |