diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-02-04 19:29:27 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-02-04 19:29:27 +0000 |
commit | 69e94faff889d3e99696a089d357b86fd8cd0b3f (patch) | |
tree | 95422037235b2e15938016459e2011c6b1338bc0 /summary.h | |
parent | c922091c097ff8de55f42f699dd713fcca84042e (diff) | |
download | wireshark-69e94faff889d3e99696a089d357b86fd8cd0b3f.tar.gz wireshark-69e94faff889d3e99696a089d357b86fd8cd0b3f.tar.bz2 wireshark-69e94faff889d3e99696a089d357b86fd8cd0b3f.zip |
remove #include "globals.h" from summary.c, as it's a bad idea for multiple capture files.
If a summary user would like to get a summary, it should know the file of *which* it needs the summary.
svn path=/trunk/; revision=13291
Diffstat (limited to 'summary.h')
-rw-r--r-- | summary.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ typedef struct _summary_tally { const char *cfilter; /* capture filter */ } summary_tally; -void summary_fill_in(summary_tally *st); +void summary_fill_in(capture_file *cf, summary_tally *st); #endif /* summary.h */ |