]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a typo in an error message that indicated that the MGCP channel type could
authorRussell Bryant <russell@russellbryant.com>
Sun, 24 Dec 2006 21:19:37 +0000 (21:19 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sun, 24 Dec 2006 21:19:37 +0000 (21:19 +0000)
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

channels/chan_oss.c

index b431f828863a6f71c8fe5e944e537e62cd514ed0..4971321aaedfa4f69e74c2131d439904e0039bc6 100644 (file)
@@ -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;
        }