Fix "checked api failed"

svn path=/trunk/; revision=33447
This commit is contained in:
Anders Broman 2010-07-06 05:46:52 +00:00
parent 0b0db7e0d7
commit 7bded303a4
1 changed files with 4 additions and 4 deletions

View File

@ -9019,7 +9019,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
length = tvb_get_ntohl(tvb, offset); length = tvb_get_ntohl(tvb, offset);
offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_count4, offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_count4,
offset); 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; 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>", g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %u Length: <End of File>",
last_fh_hash,file_offset); last_fh_hash,file_offset);
else { 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); 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>", g_string_append_printf (op_summary[ops_counter].optext, " FH: 0x%08x Offset: %u Length: <End of File>",
last_fh_hash,file_offset); last_fh_hash,file_offset);
else { 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); last_fh_hash,file_offset,lock_length);
} }
break; break;
@ -9140,7 +9140,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
if (nfs_file_name_snooping){ if (nfs_file_name_snooping){
rpc_call_info_value *civ=pinfo->private_data; rpc_call_info_value *civ=pinfo->private_data;
nfs_name_snoop_add_name(civ->xid, tvb, nfs_name_snoop_add_name(civ->xid, tvb,
//name_offset, strlen(name), /*name_offset, strlen(name),*/
0, 0, 0, 0,
0, 0, name); 0, 0, name);
} }