[asterisk-commits] murf: branch 1.4 r61644 -
/branches/1.4/channels/chan_oss.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Apr 13 10:01:03 MST 2007
Author: murf
Date: Fri Apr 13 12:01:02 2007
New Revision: 61644
URL: http://svn.digium.com/view/asterisk?view=rev&rev=61644
Log:
A fix for chan_oss that resulted from the CDR changes; it helps to use the right info.
Modified:
branches/1.4/channels/chan_oss.c
Modified: branches/1.4/channels/chan_oss.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_oss.c?view=diff&rev=61644&r1=61643&r2=61644
==============================================================================
--- branches/1.4/channels/chan_oss.c (original)
+++ branches/1.4/channels/chan_oss.c Fri Apr 13 12:01:02 2007
@@ -992,7 +992,7 @@
{
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;
More information about the asterisk-commits
mailing list