aboutsummaryrefslogtreecommitdiffstats
path: root/capture_ui_utils.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-04 01:12:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-04 01:12:04 +0000
commit58a3f1328d7bac383111dbdef7d335d5e09e19cb (patch)
treec2af1e714cc510427cdd87a9b63979038cfc40ac /capture_ui_utils.h
parentb7e1b595c94c47d44a3fceffb19440ceda8731ce (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32104 f5534014-38df-0310-8fa8-9805f1628bb7
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).