chiark / gitweb /
debian: Prepare stuff for new version.
[mLib] / buf.c
diff --git a/buf.c b/buf.c
index 3223d9070b93c04fd3f265e14b83b9b0aa85879b..8893adc1b8a133822140bc6a6b89d577eacfd61e 100644 (file)
--- a/buf.c
+++ b/buf.c
@@ -7,7 +7,7 @@
  * (c) 2001 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of the mLib utilities library.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * mLib is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with mLib; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
@@ -215,7 +215,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 +227,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);
 }