diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-13 22:13:43 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-14 00:05:05 -0600 |
commit | 1e4ad99311611a7fbb5cdfe4b1b79202381dc717 (patch) | |
tree | 9ac29b2ba82c3cd95eb86715f4bdc4ca8a72ce4b /lib9p/srv.c | |
parent | b1fcc4ac2f244dddd869054db5dc6753c099a3e0 (diff) |
Split lib9p into lib9p_core and lib9p_srv
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 0a33e03..c64f995 100644 --- a/lib9p/srv.c +++ b/lib9p/srv.c @@ -382,7 +382,7 @@ static void srv_respond_error(struct srv_req *req) { /* XXX: This assumes that a version's min_msg_size is the * Rerror overhead. That's true for the current - * implementation of protogen, but is a sneaky assumption. */ + * implementation of core_gen, but is a sneaky assumption. */ uint32_t overhead = lib9p_version_min_msg_size(sess->version); /* Truncate the error-string if necessary to avoid needing to |