aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-user_encap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2009-02-16 04:10:06 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2009-02-16 04:10:06 +0000
commit09e81f90b9e9a875a8d6ed127b2dbf852a9c91f9 (patch)
tree7904716d49cf2532b8df301cc5e0764dbda76e61 /epan/dissectors/packet-user_encap.c
parent52bc53b8dae8c4aa2bffa9a9d830e2295afb78d2 (diff)
Add an additional "title" attribute for UAT fields; that's what's
displayed to the user. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27462 f5534014-38df-0310-8fa8-9805f1628bb7
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
};