summaryrefslogtreecommitdiff
path: root/res/res_config_ldap.c
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2008-02-15 17:29:08 +0000
committerJason Parker <jparker@digium.com>2008-02-15 17:29:08 +0000
commit72bc8a7c7db13afe5b6d97a8d67e942689d5f8e8 (patch)
tree3a63fb704485864ab9b2f72bde73a4991776ac33 /res/res_config_ldap.c
parent32a758d944dd8355d799ae768f456ad7c1b769c7 (diff)
Fix up some doxygen issues.
(closes issue #11996) Patches: bug_11996_doxygen.diff uploaded by snuffy (license 35) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103723 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_config_ldap.c')
-rw-r--r--res/res_config_ldap.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c
index 99de94c82..ab71d8b7e 100644
--- a/res/res_config_ldap.c
+++ b/res/res_config_ldap.c
@@ -652,7 +652,7 @@ static char *cleaned_basedn(struct ast_channel *channel, const char *basedn)
return cbasedn;
}
-/*! \brief Replace <search> by <by> in string. No check is done on string allocated size ! */
+/*! \brief Replace \<search\> by \<by\> in string. No check is done on string allocated size ! */
static int replace_string_in_string(char *string, const char *search, const char *by)
{
int search_len = strlen(search);
@@ -967,10 +967,12 @@ static struct ast_config *realtime_multi_ldap(const char *basedn,
/*!
* \brief Sorting alogrithm for qsort to find the order of the variables \a a and \a b
- * \param \a a pointer to category_and_metric struct
- * \param \a b pointer to category_and_metric struct
+ * \param a pointer to category_and_metric struct
+ * \param b pointer to category_and_metric struct
*
- * \return the -1,0,1 (zero for equal, -1 for if b is greater, and 1 if a is greater)
+ * \retval -1 for if b is greater
+ * \retval 0 zero for equal
+ * \retval 1 if a is greater
*/
static int compare_categories(const void *a, const void *b)
{