change the signature for the get_pdu_len() function pointer passed to tcp_dissect_pdu...
[obnox/wireshark/wip.git] / epan / dissectors / packet-uma.c
index f6b54967106b09d3da92a78581a5c039eff5c2d2..68d34533115b63303a0c74b855517802f6291300 100644 (file)
@@ -1518,7 +1518,7 @@ dissect_uma(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
 }
 
 static guint
-get_uma_pdu_len(tvbuff_t *tvb, int offset)
+get_uma_pdu_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset)
 {
        /* PDU length = Message length + length of length indicator */
        return tvb_get_ntohs(tvb,offset)+2;