1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

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
This commit is contained in:
Volker Lendecke 2012-04-18 10:22:39 +02:00
parent 64fdcda0c7
commit c4c8845930

View File

@ -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: