diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-12-29 22:01:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-12-29 22:01:11 +0000 |
commit | 8053f4839a36a09853b5c89e550cfd08b7acf22d (patch) | |
tree | ebcc3990d237a0e2072f7ac7e38bf99a67e8496b /packet-ip.c | |
parent | b18512d444e550721fe509e5082775e2468c13bb (diff) | |
download | wireshark-8053f4839a36a09853b5c89e550cfd08b7acf22d.tar.gz wireshark-8053f4839a36a09853b5c89e550cfd08b7acf22d.tar.bz2 wireshark-8053f4839a36a09853b5c89e550cfd08b7acf22d.zip |
Make "dscp_vals[]" a "const" array again.
svn path=/trunk/; revision=4460
Diffstat (limited to 'packet-ip.c')
-rw-r--r-- | packet-ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ip.c b/packet-ip.c index 683d0ef187..aaab2fad27 100644 --- a/packet-ip.c +++ b/packet-ip.c @@ -1,7 +1,7 @@ /* packet-ip.c * Routines for IP and miscellaneous IP protocol packet disassembly * - * $Id: packet-ip.c,v 1.153 2001/12/29 00:43:55 ashokn Exp $ + * $Id: packet-ip.c,v 1.154 2001/12/29 22:01:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -740,7 +740,7 @@ dissect_ip_tcp_options(tvbuff_t *tvb, int offset, guint length, } } -value_string dscp_vals[] = { +const value_string dscp_vals[] = { { IPDSFIELD_DSCP_DEFAULT, "Default" }, { IPDSFIELD_DSCP_CS1, "Class Selector 1" }, { IPDSFIELD_DSCP_CS2, "Class Selector 2" }, |