diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-02-27 08:57:25 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-02-27 08:57:25 +0000 |
commit | cbf5c537c4e0ad18f3363815c89e71511a3d3fd7 (patch) | |
tree | 76f73e3b705843a74596e48d8d86d05eaa1f4461 /wiretap/libpcap.h | |
parent | 03e58907613b5f73236fcde0d81668a1f3f920bc (diff) | |
download | wireshark-cbf5c537c4e0ad18f3363815c89e71511a3d3fd7.tar.gz wireshark-cbf5c537c4e0ad18f3363815c89e71511a3d3fd7.tar.bz2 wireshark-cbf5c537c4e0ad18f3363815c89e71511a3d3fd7.zip |
From Joerg Mayer: remove unused variables and declarations of
non-existent functions.
Remove the "filetype" argument from the "can_write_encap" functions for
particular capture file types - the argument value is implicit, in that
the routine being called is the routine for that particular file type.
svn path=/trunk/; revision=4823
Diffstat (limited to 'wiretap/libpcap.h')
-rw-r--r-- | wiretap/libpcap.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wiretap/libpcap.h b/wiretap/libpcap.h index fd56251f2b..3e272b1abc 100644 --- a/wiretap/libpcap.h +++ b/wiretap/libpcap.h @@ -1,6 +1,6 @@ /* libpcap.h * - * $Id: libpcap.h,v 1.11 2001/11/13 23:55:43 gram Exp $ + * $Id: libpcap.h,v 1.12 2002/02/27 08:57:25 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef __W_LIBPCAP_H__ @@ -94,6 +93,6 @@ struct pcaprec_nokia_hdr { int libpcap_open(wtap *wth, int *err); gboolean libpcap_dump_open(wtap_dumper *wdh, int *err); -int libpcap_dump_can_write_encap(int filetype, int encap); +int libpcap_dump_can_write_encap(int encap); #endif |