Use new 'unknown' value for dch_crc_present for EDCH channels.

svn path=/trunk/; revision=21728
This commit is contained in:
Martin Mathieson 2007-05-08 17:19:18 +00:00
parent 7510f41080
commit ab32895f34
1 changed files with 6 additions and 1 deletions

View File

@ -615,8 +615,13 @@ void attach_fp_info(packet_info *pinfo, gboolean received, const char *protocol_
return;
}
/* DCH CRC present */
/* DCH CRC present... */
p_fp_info->dch_crc_present = outhdr_values[i++];
/* ... but don't trust for edch */
if (p_fp_info->channel == CHANNEL_EDCH)
{
p_fp_info->dch_crc_present = 2; /* unknown */
}
/* How many paging indications (if PCH data) */
p_fp_info->paging_indications = outhdr_values[i++];