diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-13 21:20:24 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-13 21:20:24 +0000 |
commit | 8637240895d68108279c676536e270092d14f7d3 (patch) | |
tree | a6d1a9e49fbb0d04e8ecbc21df5f68905ea89ffe /packet-slowprotocols.c | |
parent | 5e42823dc0b12a377ccf19f202dd3595c738b359 (diff) | |
download | wireshark-8637240895d68108279c676536e270092d14f7d3.tar.gz wireshark-8637240895d68108279c676536e270092d14f7d3.tar.bz2 wireshark-8637240895d68108279c676536e270092d14f7d3.zip |
Fix some compiler warnings.
svn path=/trunk/; revision=5669
Diffstat (limited to 'packet-slowprotocols.c')
-rw-r--r-- | packet-slowprotocols.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-slowprotocols.c b/packet-slowprotocols.c index 97b594febe..1799a7142b 100644 --- a/packet-slowprotocols.c +++ b/packet-slowprotocols.c @@ -1,7 +1,7 @@ /* packet-slowprotocols.c * Routines for EtherType (0x8809) Slow Protocols disassembly. * - * $Id: packet-slowprotocols.c,v 1.1 2002/06/13 07:18:47 guy Exp $ + * $Id: packet-slowprotocols.c,v 1.2 2002/06/13 21:20:24 guy Exp $ * * Copyright 2002 Steve Housley <steve_housley@3com.com> * @@ -652,7 +652,7 @@ proto_register_lacpdu(void) { &hf_lacpdu_flags_a_defaulted, { "Defaulted", "lacp.actorState.defaulted", FT_BOOLEAN, 8, TFS(&yesno), LACPDU_FLAGS_DEFAULTED, - "1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU"}}, + "1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU", HFILL }}, { &hf_lacpdu_flags_a_expired, @@ -745,7 +745,7 @@ proto_register_lacpdu(void) { &hf_lacpdu_flags_p_defaulted, { "Defaulted", "lacp.partnerState.defaulted", FT_BOOLEAN, 8, TFS(&yesno), LACPDU_FLAGS_DEFAULTED, - "1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU"}}, + "1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU", HFILL }}, { &hf_lacpdu_flags_p_expired, |