aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ccsds.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-29 14:56:09 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-29 14:56:09 +0000
commit935d45b9bff24ec8b922fbb3a016c0c88149142b (patch)
tree1b4d41f5bbb525f1f29ffee89c660d9734a1a947 /epan/dissectors/packet-ccsds.c
parent47d8431acb2524008fcec3a2047a3cd770618972 (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13967 f5534014-38df-0310-8fa8-9805f1628bb7
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));