aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-kerberos4.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-09-23 21:46:31 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-09-23 21:46:31 +0000
commit8f1037e6405b2fdcea1a0e6eb7346a509da6147c (patch)
tree8fe06c6ee8fe5365b0a2eaa3708fb6d431ca59cb /epan/dissectors/packet-kerberos4.c
parent9dbf2876fe7f4ad4cbb7cb87dfde94ad151968fa (diff)
Replace blurbs that match the name (case insensitive) with NULL.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34227 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-kerberos4.c')
-rw-r--r--epan/dissectors/packet-kerberos4.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-kerberos4.c b/epan/dissectors/packet-kerberos4.c
index 6608984f6d..4ed8a46bf7 100644
--- a/epan/dissectors/packet-kerberos4.c
+++ b/epan/dissectors/packet-kerberos4.c
@@ -267,10 +267,10 @@ dissect_krb4_auth_msg_type(packet_info *pinfo, proto_tree *parent_tree, tvbuff_t
proto_tree_add_item(tree, hf_krb4_m_type, tvb, offset, 1, FALSE);
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, "%s%s",
- (version==TRANSARC_SPECIAL_VERSION)?"TRANSARC-":"",
+ (version==TRANSARC_SPECIAL_VERSION)?"TRANSARC-":"",
val_to_str(auth_msg_type>>1, m_type_vals, "Unknown (0x%04x)"));
- proto_item_append_text(item, " %s%s",
- (version==TRANSARC_SPECIAL_VERSION)?"TRANSARC-":"",
+ proto_item_append_text(item, " %s%s",
+ (version==TRANSARC_SPECIAL_VERSION)?"TRANSARC-":"",
val_to_str(auth_msg_type>>1, m_type_vals, "Unknown (0x%04x)"));
/* byte order */
@@ -288,12 +288,12 @@ dissect_krb4(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
proto_item *item;
guint8 version, opcode;
int offset=0;
-
+
/* this should better have the value 4 or it might be a weirdo
* Transarc AFS special unknown thing.
*/
version=tvb_get_guint8(tvb, offset);
- if((version!=4)&&(version!=TRANSARC_SPECIAL_VERSION)){
+ if((version!=4)&&(version!=TRANSARC_SPECIAL_VERSION)){
return FALSE;
}
@@ -316,7 +316,7 @@ dissect_krb4(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
/* create a tree for krb4 */
item = proto_tree_add_item(parent_tree, proto_krb4, tvb, offset, -1, FALSE);
tree = proto_item_add_subtree(item, ett_krb4);
-
+
col_set_str(pinfo->cinfo, COL_PROTOCOL, "KRB4");
col_clear(pinfo->cinfo, COL_INFO);
@@ -423,7 +423,7 @@ proto_register_krb4(void)
{ &hf_krb4_ticket_blob,
{ "Ticket Blob", "krb4.ticket.blob",
FT_BYTES, BASE_NONE, NULL, 0x00,
- "Ticket blob", HFILL }},
+ NULL, HFILL }},
{ &hf_krb4_request_blob,
{ "Request Blob", "krb4.request.blob",
FT_BYTES, BASE_NONE, NULL, 0x00,
@@ -431,7 +431,7 @@ proto_register_krb4(void)
{ &hf_krb4_encrypted_blob,
{ "Encrypted Blob", "krb4.encrypted_blob",
FT_BYTES, BASE_NONE, NULL, 0x00,
- "Encrypted blob", HFILL }},
+ NULL, HFILL }},
{ &hf_krb4_unknown_transarc_blob,
{ "Unknown Transarc Blob", "krb4.unknown_transarc_blob",
FT_BYTES, BASE_NONE, NULL, 0x00,