aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/cdr.h
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-30 17:57:47 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-30 17:57:47 +0000
commit1b0e01605bbb55ed8ca5b0a7cada5eaf7f315ae2 (patch)
tree50f307ee74a41fa6d78b4a152b390570f3cc988e /include/asterisk/cdr.h
parent757bcc9075780a3163e790ae36bf159bc9d1cd3e (diff)
Merged revisions 59522 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59522 | murf | 2007-03-30 11:51:17 -0600 (Fri, 30 Mar 2007) | 1 line several changes via kpflemings review ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@59523 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/cdr.h')
-rw-r--r--include/asterisk/cdr.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h
index e9f5f8f1e..7dd946abf 100644
--- a/include/asterisk/cdr.h
+++ b/include/asterisk/cdr.h
@@ -117,13 +117,13 @@ struct ast_cdr *ast_cdr_dup(struct ast_cdr *cdr);
/*! \brief Free a CDR record
* \param cdr ast_cdr structure to free
- * Returns nothing important
+ * Returns nothing
*/
void ast_cdr_free(struct ast_cdr *cdr);
/*! \brief Discard and free a CDR record
* \param cdr ast_cdr structure to free
- * Returns nothing important -- same as free, but no checks or complaints
+ * Returns nothing -- same as free, but no checks or complaints
*/
void ast_cdr_discard(struct ast_cdr *cdr);
@@ -165,7 +165,7 @@ void ast_cdr_unregister(const char *name);
/*!
* \param cdr the cdr you wish to associate with the call
* Starts all CDR stuff necessary for monitoring a call
- * Returns nothing important
+ * Returns nothing
*/
void ast_cdr_start(struct ast_cdr *cdr);
@@ -180,21 +180,21 @@ void ast_cdr_answer(struct ast_cdr *cdr);
/*! Busy a call */
/*!
* \param cdr the cdr you wish to associate with the call
- * Returns nothing important
+ * Returns nothing
*/
void ast_cdr_busy(struct ast_cdr *cdr);
/*! Fail a call */
/*!
* \param cdr the cdr you wish to associate with the call
- * Returns nothing important
+ * Returns nothing
*/
void ast_cdr_failed(struct ast_cdr *cdr);
/*! Save the result of the call based on the AST_CAUSE_* */
/*!
* \param cdr the cdr you wish to associate with the call
- * Returns nothing important
+ * Returns nothing
* \param cause the AST_CAUSE_*
*/
int ast_cdr_disposition(struct ast_cdr *cdr, int cause);
@@ -203,7 +203,7 @@ int ast_cdr_disposition(struct ast_cdr *cdr, int cause);
/*!
* \param cdr the cdr you have associated the call with
* Registers the end of call time in the cdr structure.
- * Returns nothing important
+ * Returns nothing
*/
void ast_cdr_end(struct ast_cdr *cdr);