aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-14 20:09:22 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-14 20:09:22 +0000
commitd4bc9d9bdb79c714d31d50db1703d0285c22470b (patch)
treea432f01fbbffde223025da97bc070c8220fba475 /channels
parentde20e8f7d3fe58f8c423d286c7886c82c7e48e56 (diff)
Fix a channel name issue. chan_oss registers the "Console" channel type,
but it created channels with an "OSS" prefix. (closes issue #12194, reported by davidw, patched by me) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@108796 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_oss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_oss.c b/channels/chan_oss.c
index 0820c4b7f..7e27e7696 100644
--- a/channels/chan_oss.c
+++ b/channels/chan_oss.c
@@ -993,7 +993,7 @@ static struct ast_channel *oss_new(struct chan_oss_pvt *o, char *ext, char *ctx,
{
struct ast_channel *c;
- c = ast_channel_alloc(1, state, o->cid_num, o->cid_name, "", ext, ctx, 0, "OSS/%s", o->device + 5);
+ c = ast_channel_alloc(1, state, o->cid_num, o->cid_name, "", ext, ctx, 0, "Console/%s", o->device + 5);
if (c == NULL)
return NULL;
c->tech = &oss_tech;