aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/goose
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-01-28 21:22:30 +0000
committerBill Meier <wmeier@newsguy.com>2009-01-28 21:22:30 +0000
commit3c11319ea43806d417003c7b2fd825e6b3759c67 (patch)
tree791d22773fa3662909fba6a4856312f35f6d592d /asn1/goose
parent9d721959b7ab9979f9ea87129e1b739bac033a1c (diff)
Adjust some indentation
svn path=/trunk/; revision=27323
Diffstat (limited to 'asn1/goose')
-rw-r--r--asn1/goose/packet-goose-template.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/asn1/goose/packet-goose-template.c b/asn1/goose/packet-goose-template.c
index a62a1f85ff..f9b2a59c6f 100644
--- a/asn1/goose/packet-goose-template.c
+++ b/asn1/goose/packet-goose-template.c
@@ -78,8 +78,8 @@ dissect_goose(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
}
if (check_col(pinfo->cinfo, COL_PROTOCOL))
col_set_str(pinfo->cinfo, COL_PROTOCOL, PNAME);
- if (check_col(pinfo->cinfo, COL_INFO))
- col_clear(pinfo->cinfo, COL_INFO);
+ if (check_col(pinfo->cinfo, COL_INFO))
+ col_clear(pinfo->cinfo, COL_INFO);
/* APPID */
if (tree && tvb_reported_length_remaining(tvb, offset) >= 2) {
@@ -138,17 +138,17 @@ void proto_register_goose(void) {
/* List of subtrees */
static gint *ett[] = {
- &ett_goose,
+ &ett_goose,
#include "packet-goose-ettarr.c"
};
- /* Register protocol */
- proto_goose = proto_register_protocol(PNAME, PSNAME, PFNAME);
- register_dissector("goose", dissect_goose, proto_goose);
+ /* Register protocol */
+ proto_goose = proto_register_protocol(PNAME, PSNAME, PFNAME);
+ register_dissector("goose", dissect_goose, proto_goose);
- /* Register fields and subtrees */
- proto_register_field_array(proto_goose, hf, array_length(hf));
- proto_register_subtree_array(ett, array_length(ett));
+ /* Register fields and subtrees */
+ proto_register_field_array(proto_goose, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
}