diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-03-31 21:09:00 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-03-31 21:09:00 +0000 |
commit | 8ed5e80e14c8f56a39f979cc9727b26e040ba8e9 (patch) | |
tree | 416401738051c35ebdc2e601bfc0cddd8459be26 /packet-llc.c | |
parent | 2eb1990b0b5f906ed82f249fe2a1973ef4a8161d (diff) | |
download | wireshark-8ed5e80e14c8f56a39f979cc9727b26e040ba8e9.tar.gz wireshark-8ed5e80e14c8f56a39f979cc9727b26e040ba8e9.tar.bz2 wireshark-8ed5e80e14c8f56a39f979cc9727b26e040ba8e9.zip |
From Joerg Mayer: get rid of unused function arguments.
svn path=/trunk/; revision=5053
Diffstat (limited to 'packet-llc.c')
-rw-r--r-- | packet-llc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packet-llc.c b/packet-llc.c index e6f10670d3..3bbe3a88d4 100644 --- a/packet-llc.c +++ b/packet-llc.c @@ -2,7 +2,7 @@ * Routines for IEEE 802.2 LLC layer * Gilbert Ramirez <gram@alumni.rice.edu> * - * $Id: packet-llc.c,v 1.95 2002/01/21 07:36:37 guy Exp $ + * $Id: packet-llc.c,v 1.96 2002/03/31 21:09:00 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -213,8 +213,7 @@ capture_llc(const u_char *pd, int offset, int len, packet_counts *ld) { * uses extended operation, so we don't need to determine * whether it's basic or extended operation; is that the case? */ - control = get_xdlc_control(pd, offset+2, pd[offset+1] & SSAP_CR_BIT, - TRUE); + control = get_xdlc_control(pd, offset+2, pd[offset+1] & SSAP_CR_BIT); llc_header_len += XDLC_CONTROL_LEN(control, TRUE); if (is_snap) llc_header_len += 5; /* 3 bytes of OUI, 2 bytes of protocol ID */ |