summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-02-16 02:58:18 +0000
committerMark Spencer <markster@digium.com>2005-02-16 02:58:18 +0000
commitf9222e7e4b07c72b89fd8681d6ef3f865759b1a0 (patch)
treed64aadf9448ebe48489b370f976c365ffb9aa3c3 /apps
parentad3558498fac962fed1ece5d109cd58c7733ac53 (diff)
Fix misspellings of separate (bug #3607)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5034 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_forkcdr.c2
-rwxr-xr-xapps/app_parkandannounce.c2
-rwxr-xr-xapps/app_read.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_forkcdr.c b/apps/app_forkcdr.c
index 227fb8737..c2ef00b46 100755
--- a/apps/app_forkcdr.c
+++ b/apps/app_forkcdr.c
@@ -20,7 +20,7 @@
#include <string.h>
#include <pthread.h>
-static char *tdesc = "Fork The CDR into 2 seperate entities.";
+static char *tdesc = "Fork The CDR into 2 separate entities.";
static char *app = "ForkCDR";
static char *synopsis =
"Forks the Call Data Record";
diff --git a/apps/app_parkandannounce.c b/apps/app_parkandannounce.c
index 8f4aec12c..e6788a3f8 100755
--- a/apps/app_parkandannounce.c
+++ b/apps/app_parkandannounce.c
@@ -41,7 +41,7 @@ static char *synopsis = "Park and Announce";
static char *descrip =
" ParkAndAnnounce(announce:template|timeout|dial|[return_context]):\n"
"Park a call into the parkinglot and announce the call over the console.\n"
-"announce template: colon seperated list of files to announce, the word PARKED\n"
+"announce template: colon separated list of files to announce, the word PARKED\n"
" will be replaced by a say_digits of the ext the call is parked in\n"
"timeout: time in seconds before the call returns into the return context.\n"
"dial: The app_dial style resource to call to make the announcement. Console/dsp calls the console.\n"
diff --git a/apps/app_read.c b/apps/app_read.c
index c02e24ac3..d9f30ded2 100755
--- a/apps/app_read.c
+++ b/apps/app_read.c
@@ -76,7 +76,7 @@ static int read_exec(struct ast_channel *chan, void *data)
if (data)
argcopy = ast_strdupa((char *)data);
- if (ast_seperate_app_args(argcopy, '|', args, sizeof(args) / sizeof(args[0])) < 1) {
+ if (ast_separate_app_args(argcopy, '|', args, sizeof(args) / sizeof(args[0])) < 1) {
ast_log(LOG_WARNING, "Cannot Parse Arguements.\n");
return -1;
}