aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-30 07:13:27 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-30 07:13:27 +0000
commit54861853a8a25f4126755690a8fdcd51a128753f (patch)
tree6648db9b3d6e39dc453bf574a1e9c94b32470db3 /epan/dissectors/packet-nfs.h
parentbff3a762cafd0654af9758b13d3bc5a763768dbf (diff)
More char -> const char warning fixes
svn path=/trunk/; revision=15155
Diffstat (limited to 'epan/dissectors/packet-nfs.h')
-rw-r--r--epan/dissectors/packet-nfs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-nfs.h b/epan/dissectors/packet-nfs.h
index 5c5be608df..a28dab0088 100644
--- a/epan/dissectors/packet-nfs.h
+++ b/epan/dissectors/packet-nfs.h
@@ -100,12 +100,12 @@
extern gboolean nfs_file_name_snooping;
extern int dissect_fhandle(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
- char *name, guint32 *hash);
+ const char *name, guint32 *hash);
extern int dissect_nfs_fh3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
- char *name, guint32 *hash);
+ const char *name, guint32 *hash);
int dissect_nfs_post_op_attr(tvbuff_t *tvb, int offset, proto_tree *tree,
- char* name);
+ const char* name);
void nfs_name_snoop_add_name(int xid, tvbuff_t *tvb, int name_offset, int name_len, int parent_offset, int parent_len, unsigned char *name);
@@ -123,10 +123,10 @@ typedef int (diss_p)(tvbuff_t *tvb, int offset, proto_tree *tree, int hf);
/* Used in packet-nfsacl.c for NFS_ACL dissection */
extern int dissect_fattr(tvbuff_t *tvb, int offset, proto_tree *tree,
- char* name);
+ const char* name);
extern int dissect_access(tvbuff_t *tvb, int offset, proto_tree *tree,
- char* name);
+ const char* name);
#endif /* packet-nfs.h */