aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-06-28 15:13:53 +0000
committerGuy Harris <guy@alum.mit.edu>2012-06-28 15:13:53 +0000
commit28f866815a08e4be3f3131f1e0ba365520af1417 (patch)
tree4cb5d7aa2bdd7fb2f0059c083afc7f04a5b1f20a
parentb52000fc786d7293c4c45f63c1a232bae4b8e5db (diff)
Update some refresh_interfaces_cb() calls appropriately.
svn path=/trunk/; revision=43520
-rw-r--r--ui/gtk/capture_dlg.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/ui/gtk/capture_dlg.c b/ui/gtk/capture_dlg.c
index 23cc90bdff..0f5064ff95 100644
--- a/ui/gtk/capture_dlg.c
+++ b/ui/gtk/capture_dlg.c
@@ -3107,8 +3107,10 @@ ok_remote_cb(GtkWidget *win _U_, gpointer *data _U_)
}
hide_interface(g_strdup(new_hide));
- /* Refresh all places that are displaying an interface list. */
- refresh_interfaces_cb();
+ /* Refresh all places that are displaying an interface list
+ that includes interfaces other than local interfaces
+ (such as remote interfaces). */
+ refresh_non_local_interface_lists();
}
static gboolean
@@ -3166,8 +3168,10 @@ remove_remote_host(GtkWidget *w _U_, gpointer data _U_)
}
}
- /* Refresh all places that are displaying an interface list. */
- refresh_interfaces_cb();
+ /* Refresh all places that are displaying an interface list
+ that includes interfaces other than local interfaces
+ (such as remote interfaces). */
+ refresh_non_local_interface_lists();
}
}
#endif