summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-03-28 19:14:51 +0000
committerMark Michelson <mmichelson@digium.com>2008-03-28 19:14:51 +0000
commit3a0f4cc933283293a5b19eb11730eb3328f81052 (patch)
tree4e04a272f0852133817d05fc75a79c8a5df7e3c6 /include
parented9e3ef23eee4b2d00f39454fb67f8501e40e6b6 (diff)
Temporary revert of 111662. It's causing lots of trouble and appears to not be
the proper solution to the problem reported anyway. (related to issue #12884) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@111777 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/strings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/strings.h b/include/asterisk/strings.h
index fbff083ab..226c7bb67 100644
--- a/include/asterisk/strings.h
+++ b/include/asterisk/strings.h
@@ -326,7 +326,7 @@ int ast_get_timeval(const char *src, struct timeval *tv, struct timeval _default
*/
struct ast_str {
size_t len; /*!< The current maximum length of the string */
- size_t used; /*!< Amount of space used. Does not include string's null terminator */
+ size_t used; /*!< Amount of space used */
struct ast_threadstorage *ts; /*!< What kind of storage is this ? */
#define DS_MALLOC ((struct ast_threadstorage *)1)
#define DS_ALLOCA ((struct ast_threadstorage *)2)