summaryrefslogtreecommitdiff
path: root/lib/talloc/talloc.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-04-18 10:22:39 +0200
committerVolker Lendecke <vl@samba.org>2012-04-18 11:59:49 +0200
commitc4c8845930bf4a89e93f63d201de577ed36d5775 (patch)
tree36fe664fa92312a96f0a9571a1fff97ffcbc3825 /lib/talloc/talloc.h
parent64fdcda0c79acfaec0045743dab97c4a24360a20 (diff)
downloadsamba-c4c8845930bf4a89e93f63d201de577ed36d5775.tar.gz
samba-c4c8845930bf4a89e93f63d201de577ed36d5775.tar.bz2
samba-c4c8845930bf4a89e93f63d201de577ed36d5775.zip
Talloc doc: Fix a cut&paste error
Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Wed Apr 18 11:59:49 CEST 2012 on sn-devel-104
Diffstat (limited to 'lib/talloc/talloc.h')
-rw-r--r--lib/talloc/talloc.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/talloc/talloc.h b/lib/talloc/talloc.h
index 5d905073b4..ebd2ab5d0a 100644
--- a/lib/talloc/talloc.h
+++ b/lib/talloc/talloc.h
@@ -1301,11 +1301,8 @@ char *talloc_strdup(const void *t, const char *p);
/**
* @brief Append a string to given string.
*
- * The destination string is reallocated to take strlen(s) + strlen(a) + 1
- * characters.
- *
* The destination string is reallocated to take
- * <code>strlen(s) + strlen(a, n) + 1</code> characters.
+ * <code>strlen(s) + strlen(a) + 1</code> characters.
*
* This functions sets the name of the new pointer to the new
* string. This is equivalent to: