aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--doc/ethereal.pod.template1
-rw-r--r--gtk/print_dlg.c4
3 files changed, 7 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 7fb575f2a2..0febc62422 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1621,6 +1621,10 @@ Martijn Schipper <martijn.schipper [AT] intersil.com> {
Fix for tag for 802.11g ERP Information field
}
+And assorted fixes by:
+
+ Pavel Roskin <proski [AT] gnu.org>
+
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index 6fa16abc5a..a0d3332a17 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -1726,6 +1726,7 @@ B<http://www.ethereal.com>.
Pasi Kovanen <Pasi.Kovanen [AT] tahoenetworks.fi>
Teemu Rinta-aho <teemu.rinta-aho [AT] nomadiclab.com>
Martijn Schipper <martijn.schipper [AT] intersil.com>
+ Pavel Roskin <proski [AT] gnu.org>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.
diff --git a/gtk/print_dlg.c b/gtk/print_dlg.c
index 65c9422005..bf6264f64e 100644
--- a/gtk/print_dlg.c
+++ b/gtk/print_dlg.c
@@ -1,7 +1,7 @@
/* print_dlg.c
* Dialog boxes for printing
*
- * $Id: print_dlg.c,v 1.40 2002/11/11 15:39:05 oabad Exp $
+ * $Id: print_dlg.c,v 1.41 2003/02/21 21:06:27 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -320,7 +320,7 @@ file_print_cmd_cb(GtkWidget *widget _U_, gpointer data _U_)
accel_group);
#else
detail_rb = gtk_radio_button_new_with_mnemonic_from_widget(
- GTK_RADIO_BUTTON(button), "Print _detail");
+ GTK_RADIO_BUTTON(summary_rb), "Print _detail");
#endif
gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(detail_rb), TRUE);
SIGNAL_CONNECT(detail_rb, "toggled", print_cmd_toggle_detail, NULL);