]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a minor spelling error.
authorJoshua Colp <jcolp@digium.com>
Tue, 11 Mar 2008 17:32:17 +0000 (17:32 +0000)
committerJoshua Colp <jcolp@digium.com>
Tue, 11 Mar 2008 17:32:17 +0000 (17:32 +0000)
(closes issue #12183)
Reported by: darrylc

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@107582 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_exec.c

index 0aafac343424e901f91a81ade231627bff414a48..2ab96f5932e17eb77dceee408240bb62ec3bbee5 100644 (file)
@@ -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;
                        }
                }