aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornadi <nadi@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-03 10:40:58 +0000
committernadi <nadi@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-03 10:40:58 +0000
commit1439e18f715e58315f4c3678133509b482843e15 (patch)
treeeed62b196ed71c5cf8884992422b09e0d4772e6e
parentf99289547c7d5602c3bb584b819ab3e4a7446d13 (diff)
ptp is the 5th bit, not the 4th.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@59803 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/misdn_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/misdn_config.c b/channels/misdn_config.c
index 2345bc235..959cc2e93 100644
--- a/channels/misdn_config.c
+++ b/channels/misdn_config.c
@@ -719,7 +719,7 @@ void misdn_cfg_update_ptp (void)
if (fscanf(fp, "0x%08x", &proto) != 1)
ast_log(LOG_WARNING, "Could not parse contents of %s!\n", filename);
else
- ptp[i] = proto & 1<<4 ? 1 : 0;
+ ptp[i] = proto & 1<<5 ? 1 : 0;
fclose(fp);
}
#endif