[asterisk-commits] nadi: branch 1.2 r59803 -
/branches/1.2/channels/misdn_config.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Apr 3 03:40:59 MST 2007
Author: nadi
Date: Tue Apr 3 05:40:58 2007
New Revision: 59803
URL: http://svn.digium.com/view/asterisk?view=rev&rev=59803
Log:
ptp is the 5th bit, not the 4th.
Modified:
branches/1.2/channels/misdn_config.c
Modified: branches/1.2/channels/misdn_config.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/channels/misdn_config.c?view=diff&rev=59803&r1=59802&r2=59803
==============================================================================
--- branches/1.2/channels/misdn_config.c (original)
+++ branches/1.2/channels/misdn_config.c Tue Apr 3 05:40:58 2007
@@ -719,7 +719,7 @@
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
More information about the asterisk-commits
mailing list