aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.h
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 07:13:27 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 07:13:27 +0000
commit0692ea76de0f851d5bd5f97677707c066fa3beb5 (patch)
tree6648db9b3d6e39dc453bf574a1e9c94b32470db3 /epan/dissectors/packet-nfs.h
parent85cac5a7d4ec374a61f21cff5a5d362a01fb700c (diff)
More char -> const char warning fixes
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15155 f5534014-38df-0310-8fa8-9805f1628bb7
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 */