aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2007-08-02 21:45:27 +0000
committerGerald Combs <gerald@wireshark.org>2007-08-02 21:45:27 +0000
commit89a2966ced23693ab513131ef37641ed40787e01 (patch)
treecca4caad8e2d8be6877bd0cb6820661817c69dfb /capture-pcap-util.h
parent98309a6c837fb050aeab6106b619701cbb75af9f (diff)
Add a "-S" flag to dumpcap, which prints out interface statistics. Use
this in the GUI rather than calling pcap_stats() directly. This gets rid of the last pcap_open_live() call in the GUI code. Update README.packaging. svn path=/trunk/; revision=22443
Diffstat (limited to 'capture-pcap-util.h')
-rw-r--r--capture-pcap-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture-pcap-util.h b/capture-pcap-util.h
index 72b1f6742c..6de58441a9 100644
--- a/capture-pcap-util.h
+++ b/capture-pcap-util.h
@@ -72,7 +72,7 @@ GList *get_interface_list(int *err, char **err_str);
/* Error values from "get_interface_list()/capture_interface_list()". */
#define CANT_GET_INTERFACE_LIST 1 /* error getting list */
#define NO_INTERFACES_FOUND 2 /* list is empty */
-#define CANT_RUN_DUMPCAP 3 /* problem running 'dumpcap -I l' */
+#define CANT_RUN_DUMPCAP 3 /* problem running dumpcap */
void free_interface_list(GList *if_list);