aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_combo_utils.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-26 23:11:17 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-26 23:11:17 +0000
commit4e5896fed71345271a2fd4aed5a90f3d72306cc2 (patch)
tree3bfec228ab6ec44cf61f3dc69a815514802cee55 /gtk/capture_combo_utils.c
parente16c1c8bcfe175d4634cda84bdedc8bb22834647 (diff)
From Nathan Jennings:
update the CList as you enter/modify options; give Windows users OS descriptions in the displayed devices list; display at least 5 rows in the lists; get rid of the "extra" CList for storing edited values. svn path=/trunk/; revision=8552
Diffstat (limited to 'gtk/capture_combo_utils.c')
-rw-r--r--gtk/capture_combo_utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/capture_combo_utils.c b/gtk/capture_combo_utils.c
index e0806aac24..e759fef7ba 100644
--- a/gtk/capture_combo_utils.c
+++ b/gtk/capture_combo_utils.c
@@ -1,7 +1,7 @@
/* capture_combo_utils.c
* Utilities for combo box of interface names
*
- * $Id: capture_combo_utils.c,v 1.1 2003/09/10 05:35:25 guy Exp $
+ * $Id: capture_combo_utils.c,v 1.2 2003/09/26 23:11:17 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -65,6 +65,7 @@ capture_dev_descr_find(const gchar *if_name)
return NULL;
/* found left parenthesis, start of description */
else if (*p == '(') {
+ ct = 0;
lp++;
/* skip over left parenthesis */
p++;