aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-09-24 19:07:22 +0000
committerGuy Harris <guy@alum.mit.edu>2013-09-24 19:07:22 +0000
commit36fd921839df7df3edda89beb4084c361c53abaf (patch)
tree119c09bb1c37f786df6bc76666747371171866c2 /plugins
parent1ac3997acb378af43aa4397df807b320ce56b134 (diff)
One advantage of making as many things as possible static is that, if
they're not being used, the compiler can be made to warn about that. In this case, Broadcast_Control_Pointer_IE() was used because of a missing case in a switch statement; put that case in. svn path=/trunk/; revision=52204
Diffstat (limited to 'plugins')
-rw-r--r--plugins/wimax/msg_dlmap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/wimax/msg_dlmap.c b/plugins/wimax/msg_dlmap.c
index d452900ee4..caf1919284 100644
--- a/plugins/wimax/msg_dlmap.c
+++ b/plugins/wimax/msg_dlmap.c
@@ -1962,7 +1962,10 @@ static gint dissect_dlmap_ie(proto_tree *ie_tree, const guint8 *bufptr, gint off
/* 8.4.5.3.11 PHYMOD_DL_IE */
nibble = PHYMOD_DL_IE(tree, bufptr, nibble, len, tvb);
break;
-
+ case 0x0a:
+ /* 8.4.5.3.25 Broadcast Control Pointer IE */
+ nibble = Broadcast_Control_Pointer_IE(tree, bufptr, nibble, len, tvb);
+ break;
case 0x0b:
/* 8.4.5.3.13 DL PUSC Burst Allocation in Other Segment IE */
nibble = DL_PUSC_Burst_Allocation_in_Other_Segment_IE(tree, bufptr, nibble, len, tvb);