summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-12-16 14:51:10 -0500
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-01-11 23:34:14 -0700
commitc3b9d7e802d7d2e31131692d621515ac88178ebb (patch)
treeada9990fb897eb95e4fa5dbc11d332326480aab3 /build-aux
parentcd64085694c7c4aa96312e88905015eea4d8b63d (diff)
lib9p: Split lib9p_{validate,unmarshal,marshal} into _Tmsg and _Rmsg variants
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/stack.c.gen2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/stack.c.gen b/build-aux/stack.c.gen
index a3288b0..6602bdc 100755
--- a/build-aux/stack.c.gen
+++ b/build-aux/stack.c.gen
@@ -412,7 +412,7 @@ def main(
return sorted(tmessage_handlers)
if lib9p_msgs and "/9p.c:" in loc:
for meth in ["validate", "unmarshal", "marshal"]:
- if line.startswith(f"table.{meth}("):
+ if line.startswith(f"tentry.{meth}("):
return sorted(f"{meth}_{msg}" for msg in lib9p_msgs)
return None