diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-04-11 01:30:36 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-04-11 01:30:36 +0000 |
commit | fb3f152076232a3bdfe59a1b7110310052949ead (patch) | |
tree | 6d445cd6c0e96170edd235f0889bdc65d70a013d /capture_opts.h | |
parent | 4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91 (diff) | |
download | wireshark-fb3f152076232a3bdfe59a1b7110310052949ead.tar.gz wireshark-fb3f152076232a3bdfe59a1b7110310052949ead.tar.bz2 wireshark-fb3f152076232a3bdfe59a1b7110310052949ead.zip |
Back out Jeff Morris's change to make the autostop file size 64-bit - it
didn't change the GUI code for setting the autostop file size, and that
broke the build.
svn path=/trunk/; revision=36552
Diffstat (limited to 'capture_opts.h')
-rw-r--r-- | capture_opts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capture_opts.h b/capture_opts.h index c6f55b2478..9cd688c32e 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 */ - gint64 autostop_filesize; /**< Maximum capture file size in KB */ + gint32 autostop_filesize; /**< Maximum capture file size */ gboolean has_autostop_duration; /**< TRUE if maximum capture duration is specified */ gint32 autostop_duration; /**< Maximum capture duration */ |