diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-16 14:51:10 -0500 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-01-11 23:34:14 -0700 |
commit | c3b9d7e802d7d2e31131692d621515ac88178ebb (patch) | |
tree | ada9990fb897eb95e4fa5dbc11d332326480aab3 /build-aux | |
parent | cd64085694c7c4aa96312e88905015eea4d8b63d (diff) |
lib9p: Split lib9p_{validate,unmarshal,marshal} into _Tmsg and _Rmsg variants
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/stack.c.gen | 2 |
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 |