summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-02-23 17:05:32 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-02-23 17:05:32 +0000
commit707c3c52d09c3f66a4875d2688bf7dab0b989730 (patch)
tree4d7d360eb209eaf8d5803b850745ca7fcab6266e
parentfbf762bda53867e78e47d11a3ed9222dbc1c21d5 (diff)
downloadwireshark-707c3c52d09c3f66a4875d2688bf7dab0b989730.tar.gz
in tethereal
list_link_layer_types was not being initialized causing the "-r" option to fail svn path=/trunk/; revision=13480
-rw-r--r--tethereal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tethereal.c b/tethereal.c
index 824c68880a..739386f623 100644
--- a/tethereal.c
+++ b/tethereal.c
@@ -661,7 +661,7 @@ main(int argc, char *argv[])
char *p;
gchar err_str[PCAP_ERRBUF_SIZE];
gchar *cant_get_if_list_errstr;
- gboolean list_link_layer_types;
+ gboolean list_link_layer_types = FALSE;
#else
gboolean capture_option_specified = FALSE;
#endif