Blame SOURCES/0100-DOC-Fix-names-of-arguments-in-doxygen-comments.patch

2fc102
From 02e3c4dad405464c2f0cec97203a98e5fb251273 Mon Sep 17 00:00:00 2001
2fc102
From: Lukas Slebodnik <lslebodn@redhat.com>
2fc102
Date: Thu, 13 Feb 2014 17:46:29 +0100
2fc102
Subject: [PATCH 100/101] DOC: Fix names of arguments in doxygen comments
2fc102
MIME-Version: 1.0
2fc102
Content-Type: text/plain; charset=UTF-8
2fc102
Content-Transfer-Encoding: 8bit
2fc102
2fc102
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
2fc102
(cherry picked from commit 3b35ff47651e4893ce537a273466766b962362da)
2fc102
---
2fc102
 src/lib/idmap/sss_idmap.h            | 2 +-
2fc102
 src/sss_client/idmap/sss_nss_idmap.h | 6 +++---
2fc102
 src/util/util.h                      | 2 +-
2fc102
 3 files changed, 5 insertions(+), 5 deletions(-)
2fc102
2fc102
diff --git a/src/lib/idmap/sss_idmap.h b/src/lib/idmap/sss_idmap.h
2fc102
index ccc63f7f760b877cdb17696325731f8e540b2736..0797083293f7e010962828ddcd72709b290859b9 100644
2fc102
--- a/src/lib/idmap/sss_idmap.h
2fc102
+++ b/src/lib/idmap/sss_idmap.h
2fc102
@@ -608,7 +608,7 @@ enum idmap_error_code sss_idmap_free_smb_sid(struct sss_idmap_ctx *ctx,
2fc102
  * @brief Free mapped binary SID.
2fc102
  *
2fc102
  * @param[in] ctx         Idmap context
2fc102
- * @param[in] smb_sid     Binary SID to be freed.
2fc102
+ * @param[in] bin_sid     Binary SID to be freed.
2fc102
  *
2fc102
  * @return
2fc102
  *  - #IDMAP_CONTEXT_INVALID: Provided context is invalid
2fc102
diff --git a/src/sss_client/idmap/sss_nss_idmap.h b/src/sss_client/idmap/sss_nss_idmap.h
2fc102
index be5c506e27f0e418022cff78b48ca3a37aacd5af..79dacfbdb1708569507742fbd8579cf7aaa06d9b 100644
2fc102
--- a/src/sss_client/idmap/sss_nss_idmap.h
2fc102
+++ b/src/sss_client/idmap/sss_nss_idmap.h
2fc102
@@ -43,7 +43,7 @@ enum sss_id_type {
2fc102
  * @param[in] fq_name  Fully qualified name of a user or a group
2fc102
  * @param[out] sid     String representation of the SID of the requested user
2fc102
  *                     or group, must be freed by the caller
2fc102
- * @param[out] id_type Type of the object related to the given name
2fc102
+ * @param[out] type    Type of the object related to the given name
2fc102
  *
2fc102
  * @return
2fc102
  *  - 0 (EOK): success, sid contains the requested SID
2fc102
@@ -63,7 +63,7 @@ int sss_nss_getsidbyname(const char *fq_name, char **sid,
2fc102
  * @param[in] id       POSIX UID or GID
2fc102
  * @param[out] sid     String representation of the SID of the requested user
2fc102
  *                     or group, must be freed by the caller
2fc102
- * @param[out] id_type Type of the object related to the given ID
2fc102
+ * @param[out] type    Type of the object related to the given ID
2fc102
  *
2fc102
  * @return
2fc102
  *  - see #sss_nss_getsidbyname
2fc102
@@ -76,7 +76,7 @@ int sss_nss_getsidbyid(uint32_t id, char **sid, enum sss_id_type *type);
2fc102
  * @param[in] sid      String representation of the SID
2fc102
  * @param[out] fq_name Fully qualified name of a user or a group,
2fc102
  *                     must be freed by the caller
2fc102
- * @param[out] id_type Type of the object related to the SID
2fc102
+ * @param[out] type    Type of the object related to the SID
2fc102
  *
2fc102
  * @return
2fc102
  *  - see #sss_nss_getsidbyname
2fc102
diff --git a/src/util/util.h b/src/util/util.h
2fc102
index 7b185bcb4287a4afc5bf67b40164cf69b9beeb19..89684e84a5be6c26fe08e5d3ab3d20d3a0e199b1 100644
2fc102
--- a/src/util/util.h
2fc102
+++ b/src/util/util.h
2fc102
@@ -513,7 +513,7 @@ bool string_in_list(const char *string, char **list, bool case_sensitive);
2fc102
  *        prevents the compiler from optimizing out
2fc102
  *
2fc102
  * @param data   The address of buffer to wipe
2fc102
- * @param s      Size of the buffer
2fc102
+ * @param size   Size of the buffer
2fc102
  */
2fc102
 void safezero(void *data, size_t size);
2fc102
 
2fc102
-- 
2fc102
1.8.5.3
2fc102