From 2d50d73dcb6cd72f5d5b1e54cec2fc757453d426 Mon Sep 17 00:00:00 2001 From: Chris Maynard Date: Wed, 28 Sep 2011 19:38:03 +0000 Subject: [PATCH] Add modeline. For now, add it at the bottom with tabstop=8, as that's where and what most others are using. svn path=/trunk/; revision=39177 --- epan/dissectors/packet-igmp.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/epan/dissectors/packet-igmp.c b/epan/dissectors/packet-igmp.c index 850c094f05..143f6d9d42 100644 --- a/epan/dissectors/packet-igmp.c +++ b/epan/dissectors/packet-igmp.c @@ -1192,7 +1192,7 @@ proto_register_igmp(void) }; proto_igmp = proto_register_protocol("Internet Group Management Protocol", - "IGMP", "igmp"); + "IGMP", "igmp"); proto_register_field_array(proto_igmp, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); } @@ -1205,3 +1205,17 @@ proto_reg_handoff_igmp(void) igmp_handle = create_dissector_handle(dissect_igmp, proto_igmp); dissector_add_uint("ip.proto", IP_PROTO_IGMP, igmp_handle); } + +/* + * Editor modelines - http://www.wireshark.org/tools/modelines.html + * + * Local variables: + * c-basic-offset: 4 + * tab-width: 8 + * indent-tabs-mode: t + * End: + * + * vi: set shiftwidth=4 tabstop=8 noexpandtab: + * :indentSize=4:tabSize=8:noTabs=false: + */ +