aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1998-12-22 05:52:51 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1998-12-22 05:52:51 +0000
commite37cbc4fc1ef21b3aeaad4dedde591ea49c14c4b (patch)
treecae49ee80b1d48b9734154e1932d2b7941880d6e /capture.c
parent43558a76093deeda65aa61630724a00f182d3fc8 (diff)
Stopped the "TCP Follow" screen from producing an error when using
wiretap and gtk+-1.1.x. I also added an #include to util.c to keep it from complaining about a lack of a definition of vsnprintf when compiling with gtk+-1.1.x. svn path=/trunk/; revision=136
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture.c b/capture.c
index fef391a38e..60f049a374 100644
--- a/capture.c
+++ b/capture.c
@@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
- * $Id: capture.c,v 1.13 1998/12/17 05:42:19 gram Exp $
+ * $Id: capture.c,v 1.14 1998/12/22 05:52:48 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -293,7 +293,7 @@ capture_prep_cb(GtkWidget *w, gpointer d) {
gtk_box_pack_start (GTK_BOX (bbox), cancel_bt, TRUE, TRUE, 0);
gtk_widget_show(cancel_bt);
- /* Attach pointers to needed widges to the capture prefs window/object */
+ /* Attach pointers to needed widgets to the capture prefs window/object */
gtk_object_set_data(GTK_OBJECT(cap_open_w), E_CAP_IFACE_KEY, if_cb);
gtk_object_set_data(GTK_OBJECT(cap_open_w), E_CAP_FILT_KEY, filter_te);
gtk_object_set_data(GTK_OBJECT(cap_open_w), E_CAP_FILE_KEY, file_te);