aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-07-09 04:18:36 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-07-09 04:18:36 +0000
commit5a7e28ca4645f88850af498a9a28fa5dea0f14b4 (patch)
tree45c8b659a436d5f9f9942e24983e95bbc1430594 /util.c
parent5617c183683f2e421aa2367cefdcc67f427c5a29 (diff)
downloadwireshark-5a7e28ca4645f88850af498a9a28fa5dea0f14b4.tar.gz
wireshark-5a7e28ca4645f88850af498a9a28fa5dea0f14b4.tar.bz2
wireshark-5a7e28ca4645f88850af498a9a28fa5dea0f14b4.zip
Added the ability to create a read-only ethereal, i.e., one that
doesn't link with libpcap, so no packet captures can be made. The "--disable-pcap" option has been added to the configure script. Docs have been updated. And the string buffer size in the simple_dialog() has been doubled so that Johan's e-mail address in the "About" dialogue window doesn't get chopped off. svn path=/trunk/; revision=351
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 7a84868b08..53321293f1 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.15 1999/06/12 09:10:18 guy Exp $
+ * $Id: util.c,v 1.16 1999/07/09 04:18:36 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -73,7 +73,7 @@ const gchar *bm_key = "button mask";
*
*/
-#define ESD_MAX_MSG_LEN 1024
+#define ESD_MAX_MSG_LEN 2048
void
simple_dialog(gint type, gint *btn_mask, gchar *msg_format, ...) {
GtkWidget *win, *main_vb, *top_hb, *type_pm, *msg_label,