Add modeline. For now, add it at the bottom with tabstop=8, as that's where and...
authorcmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 28 Sep 2011 19:38:03 +0000 (19:38 +0000)
committercmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 28 Sep 2011 19:38:03 +0000 (19:38 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39177 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-igmp.c

index 850c094f051a9b02e880e41149f7d0e0667e814f..143f6d9d42e4edb0c721a1f192ea194eef65a3e2 100644 (file)
@@ -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:
+ */
+