1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

lib: Fix a typo

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Kai Blin <kai@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Thu Feb 20 22:58:59 CET 2014 on sn-devel-104
This commit is contained in:
Volker Lendecke 2013-12-31 15:28:04 +01:00 committed by Jeremy Allison
parent eb4b319a8e
commit 72696c3f5a

View File

@ -222,7 +222,7 @@ char* cbuf_gets(cbuf* b, size_t idx);
* @param[out] ost outstream
* @param[in] s '\0' terminated string of printable characters.
*
* @return numner of bytes written, -1 on error
* @return number of bytes written, -1 on error
*/
int cbuf_print_quoted_string(cbuf* ost, const char* s);
@ -237,7 +237,7 @@ int cbuf_print_quoted_string(cbuf* ost, const char* s);
* @param[in] s string of bytes
* @param[in] len number of bytes
*
* @return numner of bytes written, -1 on error
* @return number of bytes written, -1 on error
*/
int cbuf_print_quoted(cbuf* ost, const char* s, size_t len);