aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-28 15:31:13 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-28 15:31:13 +0000
commit9d6ac60cefff17895674beaf30447b7a2c9285fc (patch)
treeafad86f42c3922fe5312deb0752f39c15db559ed /capture_opts.c
parentdaa67c79ba2b65c3893ffdf9022c5cf64025c4e7 (diff)
remove capture_child flag from capture_opts as it's no longer required
svn path=/trunk/; revision=13954
Diffstat (limited to 'capture_opts.c')
-rw-r--r--capture_opts.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/capture_opts.c b/capture_opts.c
index 00f3d1a0bf..ddcea18f5c 100644
--- a/capture_opts.c
+++ b/capture_opts.c
@@ -59,7 +59,6 @@ capture_opts_init(capture_options *capture_opts, void *cfile)
infinite, in effect */
capture_opts->promisc_mode = TRUE; /* promiscuous mode is the default */
capture_opts->linktype = -1; /* the default linktype */
- capture_opts->capture_child = FALSE;
capture_opts->save_file = NULL;
capture_opts->sync_mode = TRUE;
capture_opts->show_info = TRUE;
@@ -98,7 +97,6 @@ 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("Child : %u", capture_opts->capture_child);
g_warning("SaveFile : %s", capture_opts->save_file);
g_warning("SyncMode : %u", capture_opts->sync_mode);
g_warning("ShowInfo : %u", capture_opts->show_info);