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
This commit is contained in:
Jason Parker
2008-02-15 17:29:08 +00:00
parent 32a758d944
commit 72bc8a7c7d
18 changed files with 162 additions and 128 deletions

View File

@@ -277,8 +277,8 @@ static int update_curl(const char *url, const char *unused, const char *keyfield
/*!
* \brief Execute an INSERT query
* \param database
* \param table
* \param url
* \param unused
* \param ap list containing one or more field/value set(s)
*
* Insert a new record into database table, prepare the sql statement.

View File

@@ -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)
{

View File

@@ -20,7 +20,7 @@
/*! \file
*
* \Phone provisioning application for the asterisk internal http server
* \brief Phone provisioning application for the asterisk internal http server
*
* \author Matthew Brooks <mbrooks@digium.com>
* \author Terry Wilson <twilson@digium.com>