summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-nfs.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-07-06 05:46:52 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-07-06 05:46:52 +0000
commit7bded303a41c1032c76f7cb403c0a11e86c36f8d (patch)
treeddb8de94c2f999cf0d6134899395326f599521d6 /epan/dissectors/packet-nfs.c
parent0b0db7e0d7b91e5d040518d435a6e24fce0e895a (diff)
downloadwireshark-7bded303a41c1032c76f7cb403c0a11e86c36f8d.tar.gz
Fix "checked api failed"
svn path=/trunk/; revision=33447
Diffstat (limited to 'epan/dissectors/packet-nfs.c')
-rw-r--r--epan/dissectors/packet-nfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index ed6585d563..f02c3771ad 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -9019,7 +9019,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
length = tvb_get_ntohl(tvb, offset);
offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_count4,
offset);
- g_string_append_printf (op_summary[ops_counter].optext, " FH:0x%08x Offset:%llu Len:%u", last_fh_hash, file_offset, length);
+ g_string_append_printf (op_summary[ops_counter].optext, " FH:0x%08x Offset:%"G_GINT64_MODIFIER"u Len:%u", last_fh_hash, file_offset, length);
break;
@@ -9103,7 +9103,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %u Length: <End of File>",
last_fh_hash,file_offset);
else {
- g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %llu Length: %llu ",
+ g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %"G_GINT64_MODIFIER"u Length: %"G_GINT64_MODIFIER"u ",
last_fh_hash,file_offset,lock_length);
}
@@ -9128,7 +9128,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %u Length: <End of File>",
last_fh_hash,file_offset);
else {
- g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %llu Length: %llu ",
+ g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %"G_GINT64_MODIFIER"u Length: %"G_GINT64_MODIFIER"u ",
last_fh_hash,file_offset,lock_length);
}
break;
@@ -9140,7 +9140,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
if (nfs_file_name_snooping){
rpc_call_info_value *civ=pinfo->private_data;
nfs_name_snoop_add_name(civ->xid, tvb,
- //name_offset, strlen(name),
+ /*name_offset, strlen(name),*/
0, 0,
0, 0, name);
}