[asterisk-commits] russell: trunk r108797 - in /trunk: ./ channels/chan_oss.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Mar 14 15:09:38 CDT 2008
Author: russell
Date: Fri Mar 14 15:09:37 2008
New Revision: 108797
URL: http://svn.digium.com/view/asterisk?view=rev&rev=108797
Log:
Merged revisions 108796 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r108796 | russell | 2008-03-14 15:09:22 -0500 (Fri, 14 Mar 2008) | 5 lines
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)
........
Modified:
trunk/ (props changed)
trunk/channels/chan_oss.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_oss.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_oss.c?view=diff&rev=108797&r1=108796&r2=108797
==============================================================================
--- trunk/channels/chan_oss.c (original)
+++ trunk/channels/chan_oss.c Fri Mar 14 15:09:37 2008
@@ -789,7 +789,7 @@
{
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;
More information about the asterisk-commits
mailing list