summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2007-11-12 23:44:20 +0000
committerJason Parker <jparker@digium.com>2007-11-12 23:44:20 +0000
commitcfbc4f5fb89344e2b0a07fbcb0c0fe35e09bca87 (patch)
treeb4f451a9593bedd2c9171dc8d03ca89228930385 /res
parentf033e50a1588a5829479ef83b7f2275b08669bf4 (diff)
Doxygen fixes.
Also fix a common typo I kept seeing (arguement) in various files. Closes issue #11222, patch by snuffy (with arguement > argument by me). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89202 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_clioriginate.c4
-rw-r--r--res/res_config_sqlite.c6
-rw-r--r--res/res_convert.c6
-rw-r--r--res/res_crypto.c12
-rw-r--r--res/res_features.c2
-rw-r--r--res/res_monitor.c4
6 files changed, 17 insertions, 17 deletions
diff --git a/res/res_clioriginate.c b/res/res_clioriginate.c
index a0e598434..09cde4d7c 100644
--- a/res/res_clioriginate.c
+++ b/res/res_clioriginate.c
@@ -117,9 +117,9 @@ static char *orig_exten(int fd, const char *chan, const char *data)
* \brief handle for orgination app or exten.
* \param e pointer to the CLI structure to initialize
* \param cmd operation to execute
- * \param a structure that contains either application or extension arguements
+ * \param a structure that contains either application or extension arguments
* \retval CLI_SUCCESS on success.
- * \retval CLI_SHOWUSAGE on failure.
+ * \retval CLI_SHOWUSAGE on failure.
*/
static char *handle_orig(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
diff --git a/res/res_config_sqlite.c b/res/res_config_sqlite.c
index ae44caf8f..d05a38237 100644
--- a/res/res_config_sqlite.c
+++ b/res/res_config_sqlite.c
@@ -448,9 +448,9 @@ static int realtime_destroy_handler(const char *database, const char *table,
/*!
* \brief Asterisk callback function for the CLI status command.
*
- * \param fd file descriptor provided by Asterisk to use with ast_cli()
- * \param argc number of arguments
- * \param argv arguments list
+ * \param e CLI command
+ * \param cmd
+ * \param a CLI argument list
* \return RESULT_SUCCESS
*/
static char *handle_cli_show_sqlite_status(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
diff --git a/res/res_convert.c b/res/res_convert.c
index 974cf6ab7..c91c5e7ee 100644
--- a/res/res_convert.c
+++ b/res/res_convert.c
@@ -58,9 +58,9 @@ static int split_ext(char *filename, char **name, char **ext)
/*!
* \brief Convert a file from one format to another
- * \param fd file descriptor
- * \param argc no arguements
- * \param argv list of arguements
+ * \param e CLI entry
+ * \param cmd command number
+ * \param a list of cli arguments
* \retval CLI_SUCCESS on success.
* \retval CLI_SHOWUSAGE or CLI_FAILURE on failure.
*/
diff --git a/res/res_crypto.c b/res/res_crypto.c
index b32837b34..e76cab2e8 100644
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -494,9 +494,9 @@ static void md52sum(char *sum, unsigned char *md5)
/*!
* \brief show the list of RSA keys
- * \param fd file descriptor
- * \param argc no of arguements
- * \param argv list of arguements
+ * \param e CLI command
+ * \param cmd
+ * \param a list of CLI arguments
* \return RESULT_SUCCESS
*/
static char *handle_cli_keys_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
@@ -540,9 +540,9 @@ static char *handle_cli_keys_show(struct ast_cli_entry *e, int cmd, struct ast_c
/*!
* \brief initialize all RSA keys
- * \param fd file descriptor
- * \param argc no of arguements
- * \param argv list of arguements
+ * \param e CLI command
+ * \param cmd
+ * \param a list of CLI arguments
* \return RESULT_SUCCESS
*/
static char *handle_cli_keys_init(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
diff --git a/res/res_features.c b/res/res_features.c
index e4fec5305..56053f91d 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -2583,7 +2583,7 @@ static int action_bridge(struct mansession *s, const struct message *m)
*
* Check right usage, lock parking lot, display parked calls, unlock parking lot list.
* \retval CLI_SUCCESS on success.
- * \retval CLI_SHOWUSAGE on incorrect number of arguements.
+ * \retval CLI_SHOWUSAGE on incorrect number of arguments.
* \retval NULL when tab completion is used.
*/
static char *handle_parkedcalls(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
diff --git a/res/res_monitor.c b/res/res_monitor.c
index ec770ea61..3a5aa5914 100644
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -80,7 +80,7 @@ static char *monitor_descrip = " Monitor([file_format[:urlbase],[fname_base],[o
" and a target mixed file name which is the same as the leg file names\n"
" only without the in/out designator.\n"
" If MONITOR_EXEC_ARGS is set, the contents will be passed on as\n"
-" additional arguements to MONITOR_EXEC\n"
+" additional arguments to MONITOR_EXEC\n"
" Both MONITOR_EXEC and the Mix flag can be set from the\n"
" administrator interface\n"
"\n"
@@ -419,7 +419,7 @@ int ast_monitor_change_fname(struct ast_channel *chan, const char *fname_base, i
/*!
* \brief Start monitor
* \param chan
- * \param data arguements passed fname|options
+ * \param data arguments passed fname|options
* \retval 0 on success.
* \retval -1 on failure.
*/