https://origsvn.digium.com/svn/asterisk/trunk
........
r274281 | tilghman | 2010-07-06 17:09:23 -0500 (Tue, 06 Jul 2010) | 2 lines
Status shows all non-CRC4 lines as "yellow", even if "yellow" was not in the bitfield.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@274282
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
s.lineconfig & DAHDI_CONFIG_AMI ? "AMI" :
"Unk",
s.lineconfig & DAHDI_CONFIG_CRC4 ?
- s.lineconfig & DAHDI_CONFIG_NOTOPEN ? "CRC4/YEL" : "CRC4" : "YEL",
+ s.lineconfig & DAHDI_CONFIG_NOTOPEN ? "CRC4/YEL" : "CRC4" :
+ s.lineconfig & DAHDI_CONFIG_NOTOPEN ? "YEL" : "",
lbostr[s.lbo]
);
}