summaryrefslogtreecommitdiff
path: root/capture_opts.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-28 21:05:53 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-28 21:05:53 +0000
commit0b132c9b1d8dba90d92b3ea3a9ccc010ba40a70e (patch)
tree48a1f3fd3998706aa9221628f162698cf50acaea /capture_opts.c
parent778c9abaeaa51403c30c017b9a7a870e1135593e (diff)
downloadwireshark-0b132c9b1d8dba90d92b3ea3a9ccc010ba40a70e.tar.gz
bugfixes: bring non real-time captures back to former behaviour, other minor fixes
svn path=/trunk/; revision=13961
Diffstat (limited to 'capture_opts.c')
-rw-r--r--capture_opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture_opts.c b/capture_opts.c
index ac57549b49..64a9b85e25 100644
--- a/capture_opts.c
+++ b/capture_opts.c
@@ -97,7 +97,7 @@ capture_opts_info(capture_options *capture_opts) {
g_warning("SnapLen (%u): %u", capture_opts->has_snaplen, capture_opts->snaplen);
g_warning("Promisc : %u", capture_opts->promisc_mode);
g_warning("LinkType : %d", capture_opts->linktype);
- g_warning("SaveFile : %s", capture_opts->save_file);
+ g_warning("SaveFile : %s", (capture_opts->save_file) ? capture_opts->save_file : "");
g_warning("RealTimeMode : %u", capture_opts->real_time_mode);
g_warning("ShowInfo : %u", capture_opts->show_info);
g_warning("QuitAfterCap : %u", capture_opts->quit_after_cap);