aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-11 17:32:17 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-11 17:32:17 +0000
commit2e351a03d74b3051aa46f8d830d408c8c3dfe0b1 (patch)
treee24ac66092a90d67f15ce75531b1d8830fd0528b /apps
parentb03904364125184701f45b43b53e98c5221081f5 (diff)
Fix a minor spelling error.
(closes issue #12183) Reported by: darrylc git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@107582 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_exec.c b/apps/app_exec.c
index 0aafac343..2ab96f593 100644
--- a/apps/app_exec.c
+++ b/apps/app_exec.c
@@ -183,7 +183,7 @@ static int execif_exec(struct ast_channel *chan, void *data)
if ((app = pbx_findapp(myapp))) {
res = pbx_exec(chan, app, mydata);
} else {
- ast_log(LOG_WARNING, "Count not find application! (%s)\n", myapp);
+ ast_log(LOG_WARNING, "Could not find application! (%s)\n", myapp);
res = -1;
}
}