aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-13 17:01:02 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-13 17:01:02 +0000
commit925c6600aefd19246339d775f3223a84d9b93ddd (patch)
tree395ba44f947355d9936902df47a8a5858653cc2e
parent3ed317cb2e1d9a77c92d4f4ab7e41e61c05035d6 (diff)
A fix for chan_oss that resulted from the CDR changes; it helps to use the right info.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@61644 f38db490-d61c-443f-a65b-d21fe96a405b
-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 42d8abd9a..e136bb208 100644
--- a/channels/chan_oss.c
+++ b/channels/chan_oss.c
@@ -992,7 +992,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, "", o->ext, o->ctx, 0, "OSS/%s", o->device + 5);
+ c = ast_channel_alloc(1, state, o->cid_num, o->cid_name, "", ext, ctx, 0, "OSS/%s", o->device + 5);
if (c == NULL)
return NULL;
c->tech = &oss_tech;