]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
lib/util/charset: @param typos
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Wed, 1 Mar 2023 01:59:55 +0000 (14:59 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 26 Oct 2023 01:24:32 +0000 (01:24 +0000)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
lib/util/charset/convert_string.c
lib/util/charset/pull_push.c

index 88b128be547848f2c1c7b4fbd2d1026c6e7879f9..7ec6653a592bec32155f63b7e27b766db09ca0c0 100644 (file)
@@ -334,7 +334,7 @@ bool convert_string_handle(struct smb_iconv_handle *ic,
  *
  * @param srclen length of source buffer.
  * @param dest always set at least to NULL
- * @parm converted_size set to the number of bytes occupied by the string in
+ * @param converted_size set to the number of bytes occupied by the string in
  * the destination on success.
  * @note -1 is not accepted for srclen.
  *
index c5ab2ac85c0372e84d8523c6ebf394817e385576..8ec64989e2a5581fa244b467d13eba4d8b8f9f68 100644 (file)
@@ -30,7 +30,7 @@
  * allocating a buffer using talloc().
  *
  * @param dest always set at least to NULL
- * @parm converted_size set to the number of bytes occupied by the string in
+ * @param converted_size set to the number of bytes occupied by the string in
  * the destination on success.
  *
  * @return true if new buffer was correctly allocated, and string was
@@ -98,7 +98,7 @@ bool push_ascii_talloc(TALLOC_CTX *mem_ctx, char **dest, const char *src, size_t
  * Copy a string from a UCS2 src to a unix char * destination, allocating a buffer using talloc
  *
  * @param dest always set at least to NULL
- * @parm converted_size set to the number of bytes occupied by the string in
+ * @param converted_size set to the number of bytes occupied by the string in
  * the destination on success.
  *
  * @return true if new buffer was correctly allocated, and string was
@@ -120,7 +120,7 @@ bool pull_ucs2_talloc(TALLOC_CTX *ctx, char **dest, const smb_ucs2_t *src,
  * Copy a string from a UTF-8 src to a unix char * destination, allocating a buffer using talloc
  *
  * @param dest always set at least to NULL
- * @parm converted_size set to the number of bytes occupied by the string in
+ * @param converted_size set to the number of bytes occupied by the string in
  * the destination on success.
  *
  * @return true if new buffer was correctly allocated, and string was
@@ -142,7 +142,7 @@ bool pull_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src,
  * Copy a string from a DOS src to a unix char * destination, allocating a buffer using talloc
  *
  * @param dest always set at least to NULL
- * @parm converted_size set to the number of bytes occupied by the string in
+ * @param converted_size set to the number of bytes occupied by the string in
  * the destination on success.
  *
  * @return true if new buffer was correctly allocated, and string was