summaryrefslogtreecommitdiff
path: root/capchild
diff options
context:
space:
mode:
authorRoland Knall <roland.knall@br-automation.com>2016-01-12 10:47:19 +0100
committerRoland Knall <rknall@gmail.com>2016-01-12 11:07:35 +0000
commit645516b0416247e0d7ef207252ce5bef41b8f82a (patch)
treed58375ff31f07470cc9042701024a53462c2f6dc /capchild
parent00a710afe76ddec7295e3413a6f296d714afac8b (diff)
downloadwireshark-645516b0416247e0d7ef207252ce5bef41b8f82a.tar.gz
extcap: Sort extcap interfaces alphabetically
The interface list is not sorted at all, leading to a very chaotic list. This sorts it alphabetically, as well as correct a type in extcap_init_interfaces. Bug: 11998 Change-Id: Ib5381a1761e8f07f9ba7996b3e6276da063b3932 Reviewed-on: https://code.wireshark.org/review/13220 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'capchild')
-rw-r--r--capchild/capture_sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capchild/capture_sync.c b/capchild/capture_sync.c
index 6f02219d60..5cb3881da8 100644
--- a/capchild/capture_sync.c
+++ b/capchild/capture_sync.c
@@ -392,7 +392,7 @@ sync_pipe_start(capture_options *capture_opts, capture_session *cap_session, inf
cap_session->fork_child = WS_INVALID_PID;
#ifdef HAVE_EXTCAP
- if (!extcaps_init_initerfaces(capture_opts)) {
+ if (!extcap_init_interfaces(capture_opts)) {
report_failure("Unable to init extcaps. (tmp fifo already exists?)");
return FALSE;
}