diff options
author | Volker Lendecke <vl@samba.org> | 2013-12-31 15:28:04 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-02-20 22:58:58 +0100 |
commit | 72696c3f5a01da5ba07ee3495bd01c8288cb1b6d (patch) | |
tree | 81a3d6f50e98b570819db2d53477457335cf4300 /source3/lib/cbuf.h | |
parent | eb4b319a8e4226ae6cdc017078a029d9a6a3e143 (diff) | |
download | samba-72696c3f5a01da5ba07ee3495bd01c8288cb1b6d.tar.gz |
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
Diffstat (limited to 'source3/lib/cbuf.h')
-rw-r--r-- | source3/lib/cbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/cbuf.h b/source3/lib/cbuf.h index b9c55528269..3a1524ce150 100644 --- a/source3/lib/cbuf.h +++ b/source3/lib/cbuf.h @@ -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); |