aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-07-08 20:38:26 +0000
committerGuy Harris <guy@alum.mit.edu>2001-07-08 20:38:26 +0000
commitbf877ca5c5adafe44fe93da79835806c0d6f8e10 (patch)
tree2a2162dbccd2a838acf6128e5af9cc61fe69d564
parentdafe07146a616f2d4993c145907eb53685a17bbb (diff)
Get rid of incorrect "const" qualifier.
svn path=/trunk/; revision=3664
-rw-r--r--packet-smb-common.c4
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 */