From: Russell Bryant Date: Sun, 24 Dec 2006 21:19:37 +0000 (+0000) Subject: Fix a typo in an error message that indicated that the MGCP channel type could X-Git-Tag: 1.4.1~386 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1eee8d2d96f3afc63f0a1043ad4e3755c2c3122;p=thirdparty%2Fasterisk.git Fix a typo in an error message that indicated that the MGCP channel type could not be registered, instead of the correct type, OSS. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@48948 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_oss.c b/channels/chan_oss.c index b431f82886..4971321aae 100644 --- a/channels/chan_oss.c +++ b/channels/chan_oss.c @@ -1864,7 +1864,7 @@ static int load_module(void) } 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; }