chiark / gitweb /
buffers: Rename buffer_if.len to buffer_if.alloclen.
[secnet.git] / util.h
diff --git a/util.h b/util.h
index c2f10f83d33e0fa697f09d7a43353f77dfeec417..29b68e73d0a906c083b5c116b2a582b960b3c6a7 100644 (file)
--- a/util.h
+++ b/util.h
@@ -31,7 +31,7 @@ extern void *buf_unprepend(struct buffer_if *buf, int32_t amount);
 
 static inline int32_t buf_remaining_space(const struct buffer_if *buf)
 {
-    return (buf->base + buf->len) - buf->start;
+    return (buf->base + buf->alloclen) - buf->start;
 }
 
 extern void buffer_readonly_view(struct buffer_if *n, const void*, int32_t len);