summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-02-09 22:59:46 +0000
committerMark Spencer <markster@digium.com>2005-02-09 22:59:46 +0000
commitfa48657020cde2d7aab354c38feafa67f0bedaa1 (patch)
tree879ce397a32c579d0c93da22e635a93c37afcb95 /apps
parent07af9aa8f04e9917bf09785401a3d47242c0220c (diff)
Fix typos in app_dial (bug #3536)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4995 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_dial.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 3577700ff..afd3535d4 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -128,7 +128,7 @@ static char *rdescrip =
"While waiting, a 1 digit extension may be dialed. If that extension exists in either\n"
"the context defined in ${EXITCONTEXT} or the current one, The call will transfer\n"
"to that extension immmediately.\n\n"
-"All arguements after 'loops' are passed directly to the Dial() application.\n"
+"All arguments after 'loops' are passed directly to the Dial() application.\n"
"";
@@ -1318,7 +1318,7 @@ static int retrydial_exec(struct ast_channel *chan, void *data)
if ((sleep = atoi(dialdata))) {
sleep *= 1000;
} else {
- ast_log(LOG_ERROR, "%s requires the numrical arguement <sleep>\n",rapp);
+ ast_log(LOG_ERROR, "%s requires the numerical argument <sleep>\n",rapp);
LOCAL_USER_REMOVE(u);
return -1;
}
@@ -1326,7 +1326,7 @@ static int retrydial_exec(struct ast_channel *chan, void *data)
*dialdata = '\0';
dialdata++;
if (!(loops = atoi(dialdata))) {
- ast_log(LOG_ERROR, "%s requires the numrical arguement <loops>\n",rapp);
+ ast_log(LOG_ERROR, "%s requires the numerical argument <loops>\n",rapp);
LOCAL_USER_REMOVE(u);
return -1;
}
@@ -1337,7 +1337,7 @@ static int retrydial_exec(struct ast_channel *chan, void *data)
*dialdata = '\0';
dialdata++;
} else {
- ast_log(LOG_ERROR, "%s requires more arguements\n",rapp);
+ ast_log(LOG_ERROR, "%s requires more arguments\n",rapp);
LOCAL_USER_REMOVE(u);
return -1;
}