summaryrefslogtreecommitdiff
path: root/capture_opts.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-04-11 00:01:08 +0000
committerGuy Harris <guy@alum.mit.edu>2011-04-11 00:01:08 +0000
commit4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91 (patch)
treecb631a4e1881ed6ce2880d3e29c019f1a69a7604 /capture_opts.h
parentf10a13b748bdafd13ab887437c04d04d325d2ca6 (diff)
downloadwireshark-4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91.tar.gz
Jeff Morris's change to make the autostop file size 64-bit. Fixes bug
5691. svn path=/trunk/; revision=36551
Diffstat (limited to 'capture_opts.h')
-rw-r--r--capture_opts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture_opts.h b/capture_opts.h
index 9cd688c32e..c6f55b2478 100644
--- a/capture_opts.h
+++ b/capture_opts.h
@@ -144,7 +144,7 @@ typedef struct capture_options_tag {
int autostop_packets; /**< Maximum packet count */
gboolean has_autostop_filesize; /**< TRUE if maximum capture file size
is specified */
- gint32 autostop_filesize; /**< Maximum capture file size */
+ gint64 autostop_filesize; /**< Maximum capture file size in KB */
gboolean has_autostop_duration; /**< TRUE if maximum capture duration
is specified */
gint32 autostop_duration; /**< Maximum capture duration */