diff options
author | Pavel Březina <pbrezina@redhat.com> | 2012-04-20 14:32:01 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-04-24 13:28:38 +0200 |
commit | bdeee2202da2560ff8caabae64f92e1b213c647d (patch) | |
tree | a96ddae8589a00dec9fa21b0371246c25a9deb73 /lib/talloc | |
parent | 9a474717b8a629fc96c85217290212dca4011f71 (diff) | |
download | samba-bdeee2202da2560ff8caabae64f92e1b213c647d.tar.gz samba-bdeee2202da2560ff8caabae64f92e1b213c647d.tar.bz2 samba-bdeee2202da2560ff8caabae64f92e1b213c647d.zip |
Talloc doc: talloc_strdup_append does not return duplicated string
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/talloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
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() |