trawick 00/10/28 08:01:34
Modified: src/lib/apr/include apr_strings.h
Log:
fix a typo and add a little more info in the doc for apr_pstrndup()
Revision Changes Path
1.6 +2 -2 apache-2.0/src/lib/apr/include/apr_strings.h
Index: apr_strings.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_strings.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- apr_strings.h 2000/10/16 06:04:44 1.5
+++ apr_strings.h 2000/10/28 15:01:34 1.6
@@ -121,8 +121,8 @@
APR_DECLARE(char *) apr_pstrdup(apr_pool_t *p, const char *s);
/**
- * duplicate the first n characters ofa string into memory allocated
- * out of a pool
+ * duplicate the first n characters of a string into memory allocated
+ * out of a pool; the new string will be '\0'-terminated
* @param p The pool to allocate out of
* @param s The string to allocate
* @param n The number of characters to duplicate