aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1998-10-28 21:38:11 +0000
committerGerald Combs <gerald@wireshark.org>1998-10-28 21:38:11 +0000
commit06e5aae0e3946b453377f7d824ef43961dfa47aa (patch)
treeb372423ae62551ea536da9d5edca5d65efa00353 /capture.c
parent3b9dda5d6bd434cc5f75b30b08b4ac2d5d33f04c (diff)
* Added preference file saves and reads.
svn path=/trunk/; revision=75
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 08995ef0fb..d566496254 100644
--- a/capture.c
+++ b/capture.c
@@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
- * $Id: capture.c,v 1.7 1998/10/13 07:03:31 guy Exp $
+ * $Id: capture.c,v 1.8 1998/10/28 21:38:06 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -281,7 +281,7 @@ capture_prep_cb(GtkWidget *w, gpointer d) {
cancel_bt = gtk_button_new_with_label ("Cancel");
gtk_signal_connect_object(GTK_OBJECT(cancel_bt), "clicked",
GTK_SIGNAL_FUNC(capture_prep_close_cb), GTK_OBJECT(cap_open_w));
- GTK_WIDGET_SET_FLAGS(ok_bt, GTK_CAN_DEFAULT);
+ GTK_WIDGET_SET_FLAGS(cancel_bt, GTK_CAN_DEFAULT);
gtk_box_pack_start (GTK_BOX (bbox), cancel_bt, TRUE, TRUE, 0);
gtk_widget_show(cancel_bt);