Fix bug introduced by myself in

http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=46592

svn path=/trunk/; revision=46897
This commit is contained in:
Michael Tüxen 2013-01-02 16:18:20 +00:00
parent ed89f0f9df
commit 8d91633a3b
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ gboolean libpcap_write_to_file(void* write_data_info,
return FALSE;
}
(*bytes_written) += (long)nwritten;
(*bytes_written) += data_length;
return TRUE;
}