summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2009-01-28 09:51:58 +0000
committertzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2009-01-28 09:51:58 +0000
commitbdf62907b95258c8758fb4e37e4a3044b1b17aa0 (patch)
tree8f66ddb14a8e3242e3cd796ab3a5853f3fe5bf23
parenta09746d3532ecca0ff02d4500ff89612dbf9ed18 (diff)
xpp_sync: Fix an NT/TE mixup (in automatic syncers order)
The respective code in DAHDI has already been fixed by rewriting. git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@4620 5390a7c7-147a-4af0-8ec9-7488f05a26cb
-rwxr-xr-xkernel/xpp/utils/xpp_sync6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/xpp/utils/xpp_sync b/kernel/xpp/utils/xpp_sync
index 1438f50..d5b340a 100755
--- a/kernel/xpp/utils/xpp_sync
+++ b/kernel/xpp/utils/xpp_sync
@@ -60,11 +60,11 @@ sub get_sorted_xpds() {
# Sync Priority
return
- @pri_nt_xpds,
- @bri_nt_xpds,
- @fxo_xpds,
@pri_te_xpds,
@bri_te_xpds,
+ @fxo_xpds,
+ @pri_nt_xpds,
+ @bri_nt_xpds,
@fxs_xpds;
}