diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-06-26 19:56:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-06-26 19:56:52 +0000 |
commit | ab797734ddebd50f40deae437f27392ca4651c92 (patch) | |
tree | 82a95df0652f9df59634fd7a7f8dd36026fa4ea7 /tap-wspstat.c | |
parent | 2b07720c2fde93c0ee91e88969e76493ee7f86de (diff) | |
download | wireshark-ab797734ddebd50f40deae437f27392ca4651c92.tar.gz wireshark-ab797734ddebd50f40deae437f27392ca4651c92.tar.bz2 wireshark-ab797734ddebd50f40deae437f27392ca4651c92.zip |
Get rid of the private "my_match_strval()" routine in many dissectors;
add a "match_strval_idx()" routine that does the same thing, and have
"match_strval()" call it.
Make those routines, and "val_to_str()", return a "const" pointer.
Update dissectors as necessary to squelch compiler warnings produced by
that.
Use "val_to_str()" rather than using "match_strval()" and then, if the
result is null, substituting a specific string. Clean up some other
"match_strval()"/"val_to_str()" usages.
Add a null pointer check in the NDPS dissector's "attribute_value()"
routine, as it's not clear that "global_attribute_name" won't be null at
that point.
Make some global variables in the AFS4INT dissector local.
Make some routines not used outside the module they're in static.
Make some tables "static const".
Clean up white space.
Fix Gerald's address in some files.
svn path=/trunk/; revision=14786
Diffstat (limited to 'tap-wspstat.c')
-rw-r--r-- | tap-wspstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-wspstat.c b/tap-wspstat.c index 67805f62fb..8f76139a87 100644 --- a/tap-wspstat.c +++ b/tap-wspstat.c @@ -46,7 +46,7 @@ /* used to keep track of the stats for a specific PDU type*/ typedef struct _wsp_pdu_t { - gchar *type; + const gchar *type; guint32 packets; } wsp_pdu_t; /* used to keep track of RTT statistics */ |