[svn-commits] russell: branch 1.4 r48948 - /branches/1.4/channels/chan_oss.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Sun Dec 24 14:19:37 MST 2006


Author: russell
Date: Sun Dec 24 15:19:37 2006
New Revision: 48948

URL: http://svn.digium.com/view/asterisk?view=rev&rev=48948
Log:
Fix a typo in an error message that indicated that the MGCP channel type could
not be registered, instead of the correct type, OSS.

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=48948&r1=48947&r2=48948
==============================================================================
--- branches/1.4/channels/chan_oss.c (original)
+++ branches/1.4/channels/chan_oss.c Sun Dec 24 15:19:37 2006
@@ -1864,7 +1864,7 @@
 	}
 
 	if (ast_channel_register(&oss_tech)) {
-		ast_log(LOG_ERROR, "Unable to register channel class 'MGCP'\n");
+		ast_log(LOG_ERROR, "Unable to register channel type 'OSS'\n");
 		return AST_MODULE_LOAD_FAILURE;
 	}
 



More information about the svn-commits mailing list