From 9ead15a6eb16be93559d71b4083948338ab9d26e Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Tue, 29 Mar 2005 14:56:09 +0000 Subject: README.developer says: "PROTOABBREV A name for the protocol for use in filter expressions; it should contain only lower-case letters, digits, and hyphens." In proto_register_protocol(), generate a warning if PROTOABBREV contains invalid characters. Along with the list above, allow underscores and periods. Fix up whitespace. Lower-case PROTOABBREV in several dissectors. svn path=/trunk/; revision=13967 --- epan/dissectors/packet-ccsds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-ccsds.c') diff --git a/epan/dissectors/packet-ccsds.c b/epan/dissectors/packet-ccsds.c index b3292a672c..ac1f6ca281 100644 --- a/epan/dissectors/packet-ccsds.c +++ b/epan/dissectors/packet-ccsds.c @@ -235,7 +235,7 @@ proto_register_ccsds(void) }; /* Register the protocol name and description */ - proto_ccsds = proto_register_protocol("CCSDS", "CCSDS", "CCSDS"); + proto_ccsds = proto_register_protocol("CCSDS", "CCSDS", "ccsds"); /* Required function calls to register the header fields and subtrees used */ proto_register_field_array(proto_ccsds, hf, array_length(hf)); -- cgit v1.2.1