diff options
author | Guy Harris <guy@alum.mit.edu> | 2006-03-21 09:36:07 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2006-03-21 09:36:07 +0000 |
commit | 0129bb146cb744a1f3420b18a6412e8b4cc5e3db (patch) | |
tree | ff86ce3cb995f0233949c7b4d94e0cedc3124a97 /capture_loop.h | |
parent | f4248f455df0e4c46429abc49947a4860e1d6020 (diff) | |
download | wireshark-0129bb146cb744a1f3420b18a6412e8b4cc5e3db.tar.gz wireshark-0129bb146cb744a1f3420b18a6412e8b4cc5e3db.tar.bz2 wireshark-0129bb146cb744a1f3420b18a6412e8b4cc5e3db.zip |
Simplify the argument list to cap_pipe_dispatch().
svn path=/trunk/; revision=17690
Diffstat (limited to 'capture_loop.h')
-rw-r--r-- | capture_loop.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/capture_loop.h b/capture_loop.h index aa17909f1b..1e4c0a58a5 100644 --- a/capture_loop.h +++ b/capture_loop.h @@ -141,8 +141,7 @@ capture_loop_init_filter(pcap_t *pcap_h, gboolean from_cap_pipe, const gchar * i #ifdef HAVE_LIBPCAP #ifndef _WIN32 extern int -cap_pipe_dispatch(int, loop_data *, struct pcap_hdr *, \ - struct pcaprec_modified_hdr *, guchar *, char *, int); +cap_pipe_dispatch(loop_data *, guchar *, char *, int); #endif /* _WIN32 */ #endif |