aboutsummaryrefslogtreecommitdiffstats
path: root/capture_ui_utils.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-03-04 01:12:04 +0000
committerGuy Harris <guy@alum.mit.edu>2010-03-04 01:12:04 +0000
commit167ab3a98c4583344f8b95d81b079b7a5df7e5ff (patch)
treec2af1e714cc510427cdd87a9b63979038cfc40ac /capture_ui_utils.h
parent98d800bae8939f6edaf4aa54f02787148da48c0f (diff)
In Wireshark and TShark, run dumpcap to get interface lists and lists of
link-layer header types for interfaces; if special privileges are necessary to open capture devices, Wireshark and TShark shouldn't have those privileges, but dumpcap should. svn path=/trunk/; revision=32104
Diffstat (limited to 'capture_ui_utils.h')
-rw-r--r--capture_ui_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_ui_utils.h b/capture_ui_utils.h
index 57c2572cde..e93142c79d 100644
--- a/capture_ui_utils.h
+++ b/capture_ui_utils.h
@@ -45,7 +45,7 @@ gint capture_dev_user_linktype_find(const gchar *if_name);
/** Return as descriptive a name for an interface as we can get.
* If the user has specified a comment, use that. Otherwise,
- * if get_interface_list() supplies a description, use that,
+ * if capture_interface_list() supplies a description, use that,
* otherwise use the interface name.
*
* @param if_name The name of the interface.
@@ -56,7 +56,7 @@ char *get_interface_descriptive_name(const char *if_name);
/** Build the GList of available capture interfaces.
*
- * @param if_list An interface list from get_interface_list().
+ * @param if_list An interface list from capture_interface_list().
* @param do_hide Hide the "hidden" interfaces.
*
* @return A list of if_info_t structs (use free_capture_combo_list() later).