aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.c
diff options
context:
space:
mode:
Diffstat (limited to 'capture_opts.c')
-rw-r--r--capture_opts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_opts.c b/capture_opts.c
index c13adb5ec0..de857ad06c 100644
--- a/capture_opts.c
+++ b/capture_opts.c
@@ -683,9 +683,9 @@ gboolean capture_opts_trim_iface(capture_options *capture_opts, const char *capt
/* copied from filesystem.c */
static int capture_opts_test_for_fifo(const char *path)
{
- struct stat statb;
+ ws_statb64 statb;
- if (ws_stat(path, &statb) < 0)
+ if (ws_stat64(path, &statb) < 0)
return errno;
if (S_ISFIFO(statb.st_mode))