Infrastructure: Strip away crufty CVS $Id$ tags.
[mLib] / buf.c
diff --git a/buf.c b/buf.c
index 9594349..1ac6bb9 100644 (file)
--- a/buf.c
+++ b/buf.c
@@ -1,7 +1,5 @@
 /* -*-c-*-
  *
- * $Id$
- *
  * Buffer handling
  *
  * (c) 2001 Straylight/Edgeware
@@ -215,7 +213,8 @@ DOUINTCONV(BUF_PUTU_)
  *
  * Returns:    Zero if OK, nonzero if there wasn't a null byte to be found.
  *
- * Use:                Finds a terminating null byte.
+ * Use:                Finds a terminating null byte.  The length includes this
+ *             terminator.
  */
 
 static int findz(buf *b, size_t *nn)
@@ -226,7 +225,7 @@ static int findz(buf *b, size_t *nn)
     buf_break(b);
     return (-1);
   }
-  *nn = p - BCUR(b);
+  *nn = p - BCUR(b) + 1;
   return (0);
 }