summaryrefslogtreecommitdiff
path: root/pbx/pbx_config.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2008-07-28 16:42:00 +0000
committerKevin P. Fleming <kpfleming@digium.com>2008-07-28 16:42:00 +0000
commit6291cd19bff749a1492b4b5601ed814b886f11c4 (patch)
treea7c0f5a4a58e8458f72230691577432e5fe36cb1 /pbx/pbx_config.c
parent06d951f58588d6713a71d2aa689a07e2af70254e (diff)
remove remaining Zaptel references in various places
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@134086 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/pbx_config.c')
-rw-r--r--pbx/pbx_config.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index ca667ffe7..bc27ccc1a 100644
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -1620,16 +1620,6 @@ static void pbx_load_users(void)
dahdichan = ast_variable_retrieve(cfg, cat, "dahdichan");
if (!dahdichan)
dahdichan = ast_variable_retrieve(cfg, "general", "dahdichan");
- if (!dahdichan) {
- /* no dahdichan, but look for zapchan too */
- dahdichan = ast_variable_retrieve(cfg, cat, "zapchan");
- if (!dahdichan) {
- dahdichan = ast_variable_retrieve(cfg, "general", "zapchan");
- }
- if (!ast_strlen_zero(dahdichan)) {
- ast_log(LOG_WARNING, "Use of zapchan in users.conf is deprecated. Please update configuration to use dahdichan instead.\n");
- }
- }
if (!ast_strlen_zero(dahdichan)) {
ast_copy_string(dahdicopy, dahdichan, sizeof(dahdicopy));
c = dahdicopy;