aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-daap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-09-28 19:25:09 -0400
committerBill Meier <wmeier@newsguy.com>2014-09-29 13:47:02 +0000
commit10406870f5c39617f57cc0a77f55100404505c17 (patch)
treeea566d2ff47afa6b53ccbb2709be65847e17b0e1 /epan/dissectors/packet-daap.c
parent768e36fc4fae55932bcddb0b5435c81da475b01d (diff)
Add editor modelines; fix indentation as needed.
Change-Id: I1ad94654343e5a018a0b3159481d45ffb3a91263 Reviewed-on: https://code.wireshark.org/review/4363 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-daap.c')
-rw-r--r--epan/dissectors/packet-daap.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/epan/dissectors/packet-daap.c b/epan/dissectors/packet-daap.c
index 47d979480d..0b9ca10b42 100644
--- a/epan/dissectors/packet-daap.c
+++ b/epan/dissectors/packet-daap.c
@@ -219,7 +219,7 @@ static dissector_handle_t png_handle;
/*XXX: Sorted by value definition since it appears that the "value" is just */
/* the ascii representation of the last 4 letters of the definition. */
-/* (Sorted so a binary search can be done when using value_string_ext) */
+* (Sorted so a binary search can be done when using value_string_ext) */
static const value_string vals_tag_code[] = {
{ daap_abal, "browse album listing" },
{ daap_abar, "browse artist listing" },
@@ -740,3 +740,16 @@ proto_reg_handoff_daap(void)
png_handle = find_dissector("png");
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local Variables:
+ * c-basic-offset: 3
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=3 tabstop=8 expandtab:
+ * :indentSize=3:tabSize=8:noTabs=true:
+ */