aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-23 11:55:21 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-23 11:55:21 +0000
commit40bd72f0c0b730e548d132f8a50d168c7c4152af (patch)
tree441150842dc869a9168a96562c4a5504433e430c /pbx.c
parent5bb9cb0c96ba53c2ef3af2172c8521cf9e5d6976 (diff)
make operator=no work correctly, fix typo (bug #2665)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/v1-0@4058 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index ed8f68374..13ab2b658 100755
--- a/pbx.c
+++ b/pbx.c
@@ -4568,7 +4568,7 @@ static int pbx_builtin_background(struct ast_channel *chan, void *data)
res = ast_waitstream(chan, AST_DIGIT_ANY);
ast_stopstream(chan);
} else {
- ast_log(LOG_WARNING, "ast_streamfile failed on %s fro %s\n", chan->name, (char*)data);
+ ast_log(LOG_WARNING, "ast_streamfile failed on %s for %s\n", chan->name, (char*)data);
res = 0;
}
}