From bdeee2202da2560ff8caabae64f92e1b213c647d Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Fri, 20 Apr 2012 14:32:01 +0200 Subject: Talloc doc: talloc_strdup_append does not return duplicated string --- lib/talloc/talloc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/talloc') diff --git a/lib/talloc/talloc.h b/lib/talloc/talloc.h index 3e2e9ecc60..05e6292405 100644 --- a/lib/talloc/talloc.h +++ b/lib/talloc/talloc.h @@ -1317,7 +1317,7 @@ char *talloc_strdup(const void *t, const char *p); * * @param[in] a The string you want to append. * - * @return The duplicated string, NULL on error. + * @return The concatenated strings, NULL on error. * * @see talloc_strdup() * @see talloc_strdup_append_buffer() @@ -1352,7 +1352,7 @@ char *talloc_strdup_append(char *s, const char *a); * * @param[in] a The string you want to append. * - * @return The duplicated string, NULL on error. + * @return The concatenated strings, NULL on error. * * @see talloc_strdup() * @see talloc_strdup_append() @@ -1404,7 +1404,7 @@ char *talloc_strndup(const void *t, const char *p, size_t n); * @param[in] n The number of characters you want to append from the * string. * - * @return The duplicated string, NULL on error. + * @return The concatenated strings, NULL on error. * * @see talloc_strndup() * @see talloc_strndup_append_buffer() @@ -1442,7 +1442,7 @@ char *talloc_strndup_append(char *s, const char *a, size_t n); * @param[in] n The number of characters you want to append from the * string. * - * @return The duplicated string, NULL on error. + * @return The concatenated strings, NULL on error. * * @see talloc_strndup() * @see talloc_strndup_append() -- cgit