From: Francois-Xavier Le Bail Date: Mon, 12 Feb 2018 12:49:57 +0000 (+0100) Subject: Update for coherence between prototypes and definitions X-Git-Tag: tcpdump-4.99-bp~1275 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/787ba23d07a46527cc5da899158d9127b78e4ef8 Update for coherence between prototypes and definitions --- diff --git a/print-hsrp.c b/print-hsrp.c index 42ce7603..b29135f3 100644 --- a/print-hsrp.c +++ b/print-hsrp.c @@ -94,7 +94,7 @@ struct hsrp { }; void -hsrp_print(netdissect_options *ndo, const uint8_t *bp, u_int len) +hsrp_print(netdissect_options *ndo, const u_char *bp, u_int len) { const struct hsrp *hp = (const struct hsrp *) bp; uint8_t version; diff --git a/print-isoclns.c b/print-isoclns.c index bcd8e884..b0288b26 100644 --- a/print-isoclns.c +++ b/print-isoclns.c @@ -677,7 +677,7 @@ struct isis_tlv_lsp { #define ISIS_PSNP_HEADER_SIZE (sizeof(struct isis_psnp_header)) void -isoclns_print(netdissect_options *ndo, const uint8_t *p, u_int length) +isoclns_print(netdissect_options *ndo, const u_char *p, u_int length) { if (!ND_TTEST_1(p)) { /* enough bytes on the wire ? */ ND_PRINT("|OSI");