diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-07-08 20:38:26 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-07-08 20:38:26 +0000 |
commit | bf877ca5c5adafe44fe93da79835806c0d6f8e10 (patch) | |
tree | 2a2162dbccd2a838acf6128e5af9cc61fe69d564 /packet-smb-common.c | |
parent | dafe07146a616f2d4993c145907eb53685a17bbb (diff) | |
download | wireshark-bf877ca5c5adafe44fe93da79835806c0d6f8e10.tar.gz wireshark-bf877ca5c5adafe44fe93da79835806c0d6f8e10.tar.bz2 wireshark-bf877ca5c5adafe44fe93da79835806c0d6f8e10.zip |
Get rid of incorrect "const" qualifier.
svn path=/trunk/; revision=3664
Diffstat (limited to 'packet-smb-common.c')
-rw-r--r-- | packet-smb-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb-common.c b/packet-smb-common.c index 6c12d57383..9955ba1f0c 100644 --- a/packet-smb-common.c +++ b/packet-smb-common.c @@ -2,7 +2,7 @@ * Common routines for smb packet dissection * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet-smb-common.c,v 1.6 2001/07/08 19:26:33 guy Exp $ + * $Id: packet-smb-common.c,v 1.7 2001/07/08 20:38:26 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -29,7 +29,7 @@ int display_ms_string(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int hf_index) { - const char *str; + char *str; int len; /* display a string from the tree and return the new offset */ |