diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-02 08:15:57 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-02 08:15:57 +0000 |
commit | f5d135ad13c62d3c682e8afa312b5710b0c006ce (patch) | |
tree | 1f121ca39a610dd235cf6ef556b6b2d6bd72e1e8 /packet-vines.c | |
parent | 3831d06992b0aa164c6930b4025399e2147f1d73 (diff) | |
download | wireshark-f5d135ad13c62d3c682e8afa312b5710b0c006ce.tar.gz wireshark-f5d135ad13c62d3c682e8afa312b5710b0c006ce.tar.bz2 wireshark-f5d135ad13c62d3c682e8afa312b5710b0c006ce.zip |
Handoff registration routines must be named "proto_reg_handoff_XXX()",
not "proto_register_handoff_xxx()"; otherwise, the Python
"register.c"-generation script will think it's a protocol registration
routine not a handoff registration routine.
svn path=/trunk/; revision=3505
Diffstat (limited to 'packet-vines.c')
-rw-r--r-- | packet-vines.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packet-vines.c b/packet-vines.c index 239202730e..241fce4bc4 100644 --- a/packet-vines.c +++ b/packet-vines.c @@ -1,7 +1,7 @@ /* packet-vines.c * Routines for Banyan VINES protocol packet disassembly * - * $Id: packet-vines.c,v 1.31 2001/05/30 07:41:18 guy Exp $ + * $Id: packet-vines.c,v 1.32 2001/06/02 08:15:57 guy Exp $ * * Don Lafontaine <lafont02@cn.ca> * @@ -471,9 +471,8 @@ proto_register_vines_spp(void) } void -proto_register_handoff_vines_spp(void) +proto_reg_handoff_vines_spp(void) { dissector_add("vines.proto", VIP_PROTO_SPP, dissect_vines_spp, proto_vines_spp); } - |