summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ccsds.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-03-29 14:56:09 +0000
committerGerald Combs <gerald@wireshark.org>2005-03-29 14:56:09 +0000
commit9ead15a6eb16be93559d71b4083948338ab9d26e (patch)
tree1b4d41f5bbb525f1f29ffee89c660d9734a1a947 /epan/dissectors/packet-ccsds.c
parente4f2f32fe6d10d252374cd3a6a42fe958a445708 (diff)
downloadwireshark-9ead15a6eb16be93559d71b4083948338ab9d26e.tar.gz
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
Diffstat (limited to 'epan/dissectors/packet-ccsds.c')
-rw-r--r--epan/dissectors/packet-ccsds.c2
1 files changed, 1 insertions, 1 deletions
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));