diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-01-01 02:57:02 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-01-01 02:57:02 +0000 |
commit | 71217a80071adae12b53253e3025b2220e6c89f5 (patch) | |
tree | 0e6002853a3a04b81db3f093f0a09459ebbccc7e /tap-wspstat.c | |
parent | 3f0d0ca5ea5f6034904e4cb03b38b66e7b03e165 (diff) | |
download | wireshark-71217a80071adae12b53253e3025b2220e6c89f5.tar.gz wireshark-71217a80071adae12b53253e3025b2220e6c89f5.tar.bz2 wireshark-71217a80071adae12b53253e3025b2220e6c89f5.zip |
As we've made the tap_specific_data field of a tap_packet_t structure a
const pointer (so that we don't get complaints when we make the
tap-specific data argument to "tap_queue_packet()" a const pointer,
allowing dissectors to hand const data to a tap without a complaint), we
should make the tap per-packet function take a const pointer as an
argument as well. Do so.
In some taps, use _U_, or actually use the argument, rather than
sticking in dummy "X = X" assignments to fake use of parameters. (This
means that the tap functions in question no longer have the notion that
they act on a particular static structure wired in.)
svn path=/trunk/; revision=12910
Diffstat (limited to 'tap-wspstat.c')
-rw-r--r-- | tap-wspstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-wspstat.c b/tap-wspstat.c index b12255c8b4..8fe193e538 100644 --- a/tap-wspstat.c +++ b/tap-wspstat.c @@ -133,10 +133,10 @@ index2pdut(gint pdut) return 0; } static int -wspstat_packet(void *psp, packet_info *pinfo _U_, epan_dissect_t *edt _U_, void *pri) +wspstat_packet(void *psp, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *pri) { wspstat_t *sp=psp; - wsp_info_value_t *value=pri; + const wsp_info_value_t *value=pri; gint index = pdut2index(value->pdut); int retour=0; |