Adjust for technology when generating user extension

(issue #13332)
Reported by: wizzy
Tested by: bkruse


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@143612 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Doug Bailey
2008-09-19 16:17:14 +00:00
parent 92d91e43e0
commit d4748ad3c3

View File

@@ -2478,7 +2478,7 @@ static void pbx_load_users(void)
start = x;
}
for (x = start; x <= finish; x++) {
snprintf(tmp, sizeof(tmp), "Zap/%d", x);
snprintf(tmp, sizeof(tmp), "%s/%d", dahdi_chan_name, x);
append_interface(iface, sizeof(iface), tmp);
}
chan = strsep(&c, ",");