From: Pavel Březina Date: Fri, 20 Apr 2012 12:32:01 +0000 (+0200) Subject: Talloc doc: talloc_strdup_append does not return duplicated string X-Git-Tag: samba-4.0.0alpha20~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdeee2202da2560ff8caabae64f92e1b213c647d;p=thirdparty%2Fsamba.git Talloc doc: talloc_strdup_append does not return duplicated string --- diff --git a/lib/talloc/talloc.h b/lib/talloc/talloc.h index 3e2e9ecc60d..05e6292405d 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()