]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
doxygen typo (@param, not @parma) (#4906)
authorJames Jones <jejones3141@gmail.com>
Tue, 21 Feb 2023 23:00:47 +0000 (17:00 -0600)
committerGitHub <noreply@github.com>
Tue, 21 Feb 2023 23:00:47 +0000 (17:00 -0600)
src/lib/eap_aka_sim/id.c
src/lib/server/tmpl_tokenize.c
src/lib/server/virtual_servers.c
src/lib/tls/cert.c
src/lib/util/strerror.c
src/modules/rlm_lua/lua.c

index 10e6ad2083013f188fca33bd7450b5583fef2c6e..0c50d50c30dd5c3acaabca8971923afe041d2b1d 100644 (file)
@@ -295,7 +295,7 @@ bad_format:
 
 /** Determine if a given identity is a 3gpp identity, and return the EAP method hinted
  *
- * @parma[in] id       to check.
+ * @param[in] id       to check.
  * @param[in] len      Length of the id.
  * @return
  *     - FR_EAP_METHOD_INVALID         if this is not a 3gpp identity.
index 5fe9d4915d7b3f09eff7021811f919a19dace457..2cb83955be3bc95dd4fdb45c91347015835eef55 100644 (file)
@@ -504,7 +504,7 @@ int8_t tmpl_request_ref_list_cmp(FR_DLIST_HEAD(tmpl_request_list) const *a, FR_D
 
 /** Parse one or more request references, writing the list to out
  *
- * @parma[in] ctx      to allocate request refs in.
+ * @param[in] ctx      to allocate request refs in.
  * @param[out] err     If !NULL where to write the parsing error.
  * @param[in] in       Sbuff to read request references from.
  * @param[in] p_rules  Parse rules.
@@ -663,7 +663,7 @@ static fr_slen_t tmpl_request_ref_list_from_substr(TALLOC_CTX *ctx, tmpl_attr_er
  *
  * This can be used to create request ref lists for rules and for tmpls.
  *
- * @parma[in] ctx      to allocate request refs in.
+ * @param[in] ctx      to allocate request refs in.
  * @param[out] err     If !NULL where to write the parsing error.
  * @param[in] in       Sbuff to read request references from.
  * @return
index 4bd66ba0eb927cc51b61ec77015817fadd4d9f5c..f57166adb903dbcb2d75bbe66332ecbd5c345498 100644 (file)
@@ -797,7 +797,7 @@ int virtual_server_cf_parse(UNUSED TALLOC_CTX *ctx, void *out, UNUSED void *pare
  *  This function walks down the registration table, compiling each
  *  named section.
  *
- * @parma[in] server   to search for sections in.
+ * @param[in] server   to search for sections in.
  * @param[in] list     of sections to compiler.
  * @param[in] rules    to apply for pass1.
  * @param[in] instance module instance data.  The offset value in
index 0a5648c7e0d93eb8415a74dc91caff5c0fab3d21..315d76d2a35ff8ed5a33cf1ec64b76d1fae38e01 100644 (file)
@@ -38,7 +38,7 @@ USES_APPLE_DEPRECATED_API     /* OpenSSL API has been deprecated by Apple */
  *
  * @param[out] not_before_p    Where to write the not before time.  May be NULL.
  * @param[out] not_after_p     Where to write the not after time.  May be NULL.
- * @parma[in] cert             The Certificate to validate.
+ * @param[in] cert             The Certificate to validate.
  * @return
  *     - -1 if we can't parse the notBefore or notAfter values in the cert.
  *     - -2 if the cert has expired (not_before_p, not_after_p still populated).
index 8c447481d268aaf31ac1ad049ca0c561208ffb04..c3de10cdac3f76d323aad5bf135addaed5c17aac 100644 (file)
@@ -189,7 +189,7 @@ static fr_log_entry_t *strerror_vprintf(char const *file, int line, char const *
 /** Add a message to an existing stack of messages
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] fmt      printf style format string.
  * @param[in] ap       Arguments for the error string.
  *
@@ -234,7 +234,7 @@ static fr_log_entry_t *strerror_vprintf_push(char const *file, int line,
 /** Log to thread local error buffer
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] fmt      printf style format string.
  *                     If NULL clears any existing messages.
  * @param[in] ap       Arguments for the format string.
@@ -253,7 +253,7 @@ void _fr_strerror_vprintf(char const *file, int line, char const *fmt, va_list a
 /** Add a message to an existing stack of messages at the tail
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] fmt      printf style format string.
  * @param[in] ap       Arguments for the format string.
  *
@@ -280,7 +280,7 @@ void _fr_strerror_vprintf_push(char const *file, int line, char const *fmt, va_l
 /** Add a message to an existing stack of messages at the head
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] fmt      printf style format string.
  * @param[in] ap       Arguments for the format string.
  *
@@ -307,7 +307,7 @@ void _fr_strerror_vprintf_push_head(char const *file, int line, char const *fmt,
 /** Add an error marker to an existing stack of messages
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] subject  to mark up.
  * @param[in] offset   Positive offset to show where the error
  *                     should be positioned.
@@ -335,7 +335,7 @@ void _fr_strerror_marker_vprintf(char const *file, int line,
 /** Add an error marker to an existing stack of messages at the tail
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] subject  to mark up.
  * @param[in] offset   Positive offset to show where the error
  *                     should be positioned.
@@ -369,7 +369,7 @@ void _fr_strerror_marker_vprintf_push(char const *file, int line,
 /** Add an error marker to an existing stack of messages at the head
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] subject  to mark up.
  * @param[in] offset   Positive offset to show where the error
  *                     should be positioned.
@@ -441,7 +441,7 @@ static inline CC_HINT(always_inline) fr_log_entry_t *strerror_const(char const *
 /** Log to thread local error buffer
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] msg      To add to error stack. Must have a
  *                     lifetime equal to that of the program.
  * @hidecallergraph
@@ -454,7 +454,7 @@ void _fr_strerror_const(char const *file, int line, char const *msg)
 /** Add a message to an existing stack of messages
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] buffer   to add the message to.
  * @param[in] msg      To add to error stack. Must have a
  *                     lifetime equal to that of the program.
@@ -498,7 +498,7 @@ static inline CC_HINT(always_inline) fr_log_entry_t *strerror_const_push(char co
 /** Add a message to an existing stack of messages at the tail
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] msg      To add to error stack. Must have a
  *                     lifetime equal to that of the program.
  *
@@ -521,7 +521,7 @@ void _fr_strerror_const_push(char const *file, int line, char const *msg)
 /** Add a message to an existing stack of messages at the head
  *
  * @param[in] file     the error occurred in.
- * @parma[in] line     the error occurred on.
+ * @param[in] line     the error occurred on.
  * @param[in] msg      To add to error stack. Must have a
  *                     lifetime equal to that of the program.
  *
index da6f24128b8a1ecc377bf21526b32a234908ec48..b8128758fbf71397fb148e777c3ca67edf8abf8b 100644 (file)
@@ -873,7 +873,7 @@ static void fr_lua_rcode_register(lua_State *L, char const *name)
  * Creates a new lua_State and verifies all required functions have been loaded correctly.
  *
  * @param[in] out      Where to write a pointer to the new state.
- * @parma[in] mctx     configuration data for the
+ * @param[in] mctx     configuration data for the
  * @return 0 on success else -1.
  */
 int fr_lua_init(lua_State **out, module_inst_ctx_t const *mctx)