]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Talloc doc: talloc_strdup_append does not return duplicated string
authorPavel Březina <pbrezina@redhat.com>
Fri, 20 Apr 2012 12:32:01 +0000 (14:32 +0200)
committerVolker Lendecke <vl@samba.org>
Tue, 24 Apr 2012 11:28:38 +0000 (13:28 +0200)
lib/talloc/talloc.h

index 3e2e9ecc60dc0ffef1a3b488eff12de6de83349e..05e6292405dff9ab7e4c145513db0c899661c953 100644 (file)
@@ -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()