[Asterisk-cvs] asterisk/apps app_dial.c,1.138,1.139
markster at lists.digium.com
markster at lists.digium.com
Wed Feb 9 16:59:33 CST 2005
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv27524/apps
Modified Files:
app_dial.c
Log Message:
Fix typos in app_dial (bug #3536)
Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -d -r1.138 -r1.139
--- app_dial.c 7 Feb 2005 15:19:34 -0000 1.138
+++ app_dial.c 9 Feb 2005 22:59:46 -0000 1.139
@@ -128,7 +128,7 @@
"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 @@
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 @@
*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 @@
*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;
}
More information about the svn-commits
mailing list