aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-user_encap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-02-16 04:10:06 +0000
committerGuy Harris <guy@alum.mit.edu>2009-02-16 04:10:06 +0000
commit5742ede54c6427d581c718ffd7c2e43cfe40bf56 (patch)
tree7904716d49cf2532b8df301cc5e0764dbda76e61 /epan/dissectors/packet-user_encap.c
parent14c8a5ba7d62a87ffc78ac99ecce425f3ab09059 (diff)
Add an additional "title" attribute for UAT fields; that's what's
displayed to the user. svn path=/trunk/; revision=27462
Diffstat (limited to 'epan/dissectors/packet-user_encap.c')
-rw-r--r--epan/dissectors/packet-user_encap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-user_encap.c b/epan/dissectors/packet-user_encap.c
index 7979c46fe3..76fd633a82 100644
--- a/epan/dissectors/packet-user_encap.c
+++ b/epan/dissectors/packet-user_encap.c
@@ -155,12 +155,12 @@ void proto_register_user_encap(void)
module_t *module;
static uat_field_t user_flds[] = {
- UAT_FLD_VS(user_encap,encap,user_dlts,"The DLT"),
- UAT_FLD_PROTO(user_encap,payload_proto,"Protocol to be used for the payload of this DLT"),
- UAT_FLD_DEC(user_encap,header_size,"Size of an eventual header that precedes the actual payload, 0 means none"),
- UAT_FLD_PROTO(user_encap,header_proto,"Protocol to be used for the header (empty = data)"),
- UAT_FLD_DEC(user_encap,trailer_size,"Size of an eventual trailer that follows the actual payload, 0 means none"),
- UAT_FLD_PROTO(user_encap,trailer_proto,"Protocol to be used for the trailer (empty = data)"),
+ UAT_FLD_VS(user_encap,encap,"DLT",user_dlts,"The DLT"),
+ UAT_FLD_PROTO(user_encap,payload_proto,"Payload protocol","Protocol to be used for the payload of this DLT"),
+ UAT_FLD_DEC(user_encap,header_size,"Header size","Size of an eventual header that precedes the actual payload, 0 means none"),
+ UAT_FLD_PROTO(user_encap,header_proto,"Header protocol","Protocol to be used for the header (empty = data)"),
+ UAT_FLD_DEC(user_encap,trailer_size,"Trailer size","Size of an eventual trailer that follows the actual payload, 0 means none"),
+ UAT_FLD_PROTO(user_encap,trailer_proto,"Trailer protocol","Protocol to be used for the trailer (empty = data)"),
UAT_END_FIELDS
};