diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-07-09 04:18:36 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-07-09 04:18:36 +0000 |
commit | 5a7e28ca4645f88850af498a9a28fa5dea0f14b4 (patch) | |
tree | 45c8b659a436d5f9f9942e24983e95bbc1430594 /util.c | |
parent | 5617c183683f2e421aa2367cefdcc67f427c5a29 (diff) | |
download | wireshark-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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, |