From 4e75505019e80bd635b279fc98e1ad670d1e1505 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 13 Apr 2025 02:28:29 -0600 Subject: fixup! lib9p: Split lib9p_{validate,unmarshal,marshal} into _Tmsg and _Rmsg variants --- lib9p/srv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib9p/srv.c') 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. */ -- cgit v1.2.3-2-g168b