aboutsummaryrefslogtreecommitdiffstats
path: root/fileset.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-10 19:56:06 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-10 19:56:06 +0000
commitc6a1f982e57bc57503864e715b01cd0f985d7f08 (patch)
tree2637dd7d87e1622f41d226398c2668d90c6e2f82 /fileset.c
parent7b7ee4207b88a36b162ba1db52c1d04b470eb3c0 (diff)
Define ws_statb64 to be the appropriate "struct XXX" for a
64-bit-file-size-capable stat call, and use it for ws_fstat64(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36545 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'fileset.c')
-rw-r--r--fileset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fileset.c b/fileset.c
index 63094c478d..43243a97c7 100644
--- a/fileset.c
+++ b/fileset.c
@@ -177,7 +177,7 @@ static fileset_entry *
fileset_add_file(const char *dirname, const char *fname, gboolean current)
{
int fh, result;
- struct stat buf;
+ ws_statb64 buf;
char *path;
fileset_entry *entry = NULL;