aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_oss.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-24 21:19:37 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-24 21:19:37 +0000
commit99c122b91bf3c15767d5a8415b0cefdc553733fc (patch)
treec50db828369e776bb0521fc20f48898ae353d2b9 /channels/chan_oss.c
parentd2d412981c8f66d9ae8b8e8c44df59aff222ee16 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@48948 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_oss.c')
-rw-r--r--channels/chan_oss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_oss.c b/channels/chan_oss.c
index b431f8288..4971321aa 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;
}