summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorWalter Doekes <walter+asterisk@wjd.nu>2015-01-23 15:13:08 +0000
committerWalter Doekes <walter+asterisk@wjd.nu>2015-01-23 15:13:08 +0000
commit49cbfa7de6547f9829c0b94972efa0654263eb01 (patch)
tree5fb4ee8109f0fb8e347672a5c19086b20c61a561 /apps
parent874cb5615de1a0bd295da25a968e0e798d55b2cd (diff)
Fix typo's (retrieve, specified, address).
........ Merged revisions 430996 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 430998 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@431000 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_alarmreceiver.c2
-rw-r--r--apps/app_minivm.c2
-rw-r--r--apps/app_voicemail.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_alarmreceiver.c b/apps/app_alarmreceiver.c
index cc423e584..aaf956ff2 100644
--- a/apps/app_alarmreceiver.c
+++ b/apps/app_alarmreceiver.c
@@ -484,7 +484,7 @@ static int ademco_verify_checksum(char *event, int expected)
}
/*!
- * \brief Send a single tone burst for a specifed duration and frequency.
+ * \brief Send a single tone burst for a specified duration and frequency.
* \since 11.0
*
* \param chan Asterisk Channel
diff --git a/apps/app_minivm.c b/apps/app_minivm.c
index 08f8b3abc..fc4f9a274 100644
--- a/apps/app_minivm.c
+++ b/apps/app_minivm.c
@@ -1366,7 +1366,7 @@ static int sendmail(struct minivm_template *template, struct minivm_account *vmu
prep_email_sub_vars(ast, vmu, cidnum, cidname, dur, date, counter);
/* Find email address to use */
- /* If there's a server e-mail adress in the account, user that, othterwise template */
+ /* If there's a server e-mail address in the account, use that, othterwise template */
fromemail = ast_strlen_zero(vmu->serveremail) ? template->serveremail : vmu->serveremail;
/* Find name to user for server e-mail */
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index ad99232ae..40ffb536d 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -3743,7 +3743,7 @@ static void odbc_update_msg_id(char *dir, int msg_num, char *msg_id)
/*!
* \brief Retrieves a file from an ODBC data store.
- * \param dir the path to the file to be retreived.
+ * \param dir the path to the file to be retrieved.
* \param msgnum the message number, such as within a mailbox folder.
*
* This method is used by the RETRIEVE macro when mailboxes are stored in an ODBC back end.
@@ -8014,7 +8014,7 @@ static int notify_new_message(struct ast_channel *chan, struct ast_vm_user *vmu,
* - attempt to determine the context and and mailbox, and then invoke leave_message() function to record and store the message.
*
* When in the forward message mode (is_new_message == 0):
- * - retreives the current message to be forwarded
+ * - retrieves the current message to be forwarded
* - copies the original message to a temporary file, so updates to the envelope can be done.
* - determines the target mailbox and folders
* - copies the message into the target mailbox, using copy_message() or by generating the message into an email attachment if using imap folders.