aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2018-04-30 21:55:30 +0200
committerAnders Broman <a.broman58@gmail.com>2018-05-01 06:55:55 +0000
commit488c831790405ac254ecbecb045c59b562cb4531 (patch)
tree5b908c4318d440d7f4dc9cd455130fd8eea56038 /plugins
parentd25e7c8d91b46fc038f5dc9f64faf11927de0b06 (diff)
Use common indenting space in heading
Change-Id: I47022f9c7d568ca6d9705ba63c669a980822818a Reviewed-on: https://code.wireshark.org/review/27229 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/epan/mate/mate.h20
-rw-r--r--plugins/epan/mate/mate_grammar.lemon20
-rw-r--r--plugins/epan/mate/mate_runtime.c20
-rw-r--r--plugins/epan/mate/mate_setup.c20
-rw-r--r--plugins/epan/mate/mate_util.c22
-rw-r--r--plugins/epan/mate/mate_util.h18
-rw-r--r--plugins/epan/stats_tree/pinfo_stats_tree.h20
-rw-r--r--plugins/epan/stats_tree/stats_tree_plugin.c18
-rw-r--r--plugins/epan/transum/decoders.c20
-rw-r--r--plugins/epan/transum/decoders.h20
-rw-r--r--plugins/epan/transum/extractors.c20
-rw-r--r--plugins/epan/transum/extractors.h20
-rw-r--r--plugins/epan/transum/packet-transum.c20
-rw-r--r--plugins/epan/transum/packet-transum.h20
-rw-r--r--plugins/epan/transum/preferences.h20
-rw-r--r--plugins/epan/unistim/audio.h18
-rw-r--r--plugins/epan/unistim/basic.h18
-rw-r--r--plugins/epan/unistim/broadcast.h18
-rw-r--r--plugins/epan/unistim/defines.h18
-rw-r--r--plugins/epan/unistim/display.h18
-rw-r--r--plugins/epan/unistim/expansion.h18
-rw-r--r--plugins/epan/unistim/key.h18
-rw-r--r--plugins/epan/unistim/network.h18
-rw-r--r--plugins/epan/unistim/packet-unistim.c16
-rw-r--r--plugins/epan/unistim/packet-unistim.h18
-rw-r--r--plugins/epan/unistim/uftp.h18
26 files changed, 247 insertions, 247 deletions
diff --git a/plugins/epan/mate/mate.h b/plugins/epan/mate/mate.h
index 4b10e03f3a..c795641e8e 100644
--- a/plugins/epan/mate/mate.h
+++ b/plugins/epan/mate/mate.h
@@ -1,14 +1,14 @@
/* mate.h
-* MATE -- Meta Analysis and Tracing Engine
-*
-* Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * MATE -- Meta Analysis and Tracing Engine
+ *
+ * Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#ifndef __MATE_H_
diff --git a/plugins/epan/mate/mate_grammar.lemon b/plugins/epan/mate/mate_grammar.lemon
index 7998ec2790..c041d93ffb 100644
--- a/plugins/epan/mate/mate_grammar.lemon
+++ b/plugins/epan/mate/mate_grammar.lemon
@@ -1,16 +1,16 @@
%include {
/* mate_grammar.lemon
-* MATE's configuration language grammar
-*
-* Copyright 2005, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * MATE's configuration language grammar
+ *
+ * Copyright 2005, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
/*
* XXX - there's a Lemon bug where this grammar produces a parser that
diff --git a/plugins/epan/mate/mate_runtime.c b/plugins/epan/mate/mate_runtime.c
index 75dfa6c43b..e5f501dda9 100644
--- a/plugins/epan/mate/mate_runtime.c
+++ b/plugins/epan/mate/mate_runtime.c
@@ -1,14 +1,14 @@
/* mate_runtime.c
-* MATE -- Meta Analysis Tracing Engine
-*
-* Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * MATE -- Meta Analysis Tracing Engine
+ *
+ * Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "mate.h"
diff --git a/plugins/epan/mate/mate_setup.c b/plugins/epan/mate/mate_setup.c
index 182d06d8bc..f402f14c09 100644
--- a/plugins/epan/mate/mate_setup.c
+++ b/plugins/epan/mate/mate_setup.c
@@ -1,14 +1,14 @@
/* mate_setup.c
-* MATE -- Meta Analysis Tracing Engine
-*
-* Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * MATE -- Meta Analysis Tracing Engine
+ *
+ * Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "mate.h"
diff --git a/plugins/epan/mate/mate_util.c b/plugins/epan/mate/mate_util.c
index c7b4abb9fb..2eaeb5aa45 100644
--- a/plugins/epan/mate/mate_util.c
+++ b/plugins/epan/mate/mate_util.c
@@ -1,15 +1,15 @@
/* mate_util.c
-* MATE -- Meta Analysis Tracing Engine
-* Utility Library: Single Copy Strings and Attribute Value Pairs
-*
-* Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * MATE -- Meta Analysis Tracing Engine
+ * Utility Library: Single Copy Strings and Attribute Value Pairs
+ *
+ * Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "mate.h"
#include "mate_util.h"
diff --git a/plugins/epan/mate/mate_util.h b/plugins/epan/mate/mate_util.h
index d2337c8186..a233f5fc34 100644
--- a/plugins/epan/mate/mate_util.h
+++ b/plugins/epan/mate/mate_util.h
@@ -1,13 +1,13 @@
/* mate_util.h
-*
-* Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ *
+ * Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#ifndef __AVP_H_
diff --git a/plugins/epan/stats_tree/pinfo_stats_tree.h b/plugins/epan/stats_tree/pinfo_stats_tree.h
index c3ce53b837..48e834e1c9 100644
--- a/plugins/epan/stats_tree/pinfo_stats_tree.h
+++ b/plugins/epan/stats_tree/pinfo_stats_tree.h
@@ -1,13 +1,13 @@
/* pinfo_stats_tree.h
-* Stats tree for ethernet frames
-*
-* (c) 2005, Luis E. G. Ontanon <luis@ontanon.org>
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Stats tree for ethernet frames
+ *
+ * (c) 2005, Luis E. G. Ontanon <luis@ontanon.org>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
extern void register_pinfo_stat_trees(void);
diff --git a/plugins/epan/stats_tree/stats_tree_plugin.c b/plugins/epan/stats_tree/stats_tree_plugin.c
index cd02460b3a..3074861a23 100644
--- a/plugins/epan/stats_tree/stats_tree_plugin.c
+++ b/plugins/epan/stats_tree/stats_tree_plugin.c
@@ -1,13 +1,13 @@
/* stats_tree_plugin.c
-* Stats tree plugin registration file
-* Automatically generated by make_stat_tree_registration.pl
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Stats tree plugin registration file
+ * Automatically generated by make_stat_tree_registration.pl
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
diff --git a/plugins/epan/transum/decoders.c b/plugins/epan/transum/decoders.c
index af322ed36e..2f02d4c4f0 100644
--- a/plugins/epan/transum/decoders.c
+++ b/plugins/epan/transum/decoders.c
@@ -1,14 +1,14 @@
/* decoders.c
-* Routines for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Routines for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
diff --git a/plugins/epan/transum/decoders.h b/plugins/epan/transum/decoders.h
index 0bee4e7daa..b0b515901c 100644
--- a/plugins/epan/transum/decoders.h
+++ b/plugins/epan/transum/decoders.h
@@ -1,14 +1,14 @@
/* decoders.h
-* Header file for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Header file for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
int decode_syn(packet_info *pinfo, proto_tree *tree, PKT_INFO* pkt_info);
diff --git a/plugins/epan/transum/extractors.c b/plugins/epan/transum/extractors.c
index 10c7682da0..be8c31dc56 100644
--- a/plugins/epan/transum/extractors.c
+++ b/plugins/epan/transum/extractors.c
@@ -1,14 +1,14 @@
/* extractors.c
-* Routines for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Routines for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
#include <epan/prefs.h>
#include <epan/packet.h>
diff --git a/plugins/epan/transum/extractors.h b/plugins/epan/transum/extractors.h
index 939d1bb56b..e27509848d 100644
--- a/plugins/epan/transum/extractors.h
+++ b/plugins/epan/transum/extractors.h
@@ -1,14 +1,14 @@
/* extractors.h
-* Header file for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Header file for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
#include <epan/prefs.h>
#include <epan/packet.h>
diff --git a/plugins/epan/transum/packet-transum.c b/plugins/epan/transum/packet-transum.c
index 4b14da3c1d..e2dd054d71 100644
--- a/plugins/epan/transum/packet-transum.c
+++ b/plugins/epan/transum/packet-transum.c
@@ -1,14 +1,14 @@
/* packet-transum.c
-* Routines for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Routines for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
/* ToDo: Test handling of multiple SMB2 messages within a packet */
/* ToDo: Rework the Summarizer code (future release) */
diff --git a/plugins/epan/transum/packet-transum.h b/plugins/epan/transum/packet-transum.h
index 1ed362768e..daa17dba87 100644
--- a/plugins/epan/transum/packet-transum.h
+++ b/plugins/epan/transum/packet-transum.h
@@ -1,14 +1,14 @@
/* packet-transum.h
-* Header file for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Header file for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#define ETH_TYPE_IPV4 0x0800
#define ETH_TYPE_IPV6 0x86dd
diff --git a/plugins/epan/transum/preferences.h b/plugins/epan/transum/preferences.h
index 104227c393..06ced7aedf 100644
--- a/plugins/epan/transum/preferences.h
+++ b/plugins/epan/transum/preferences.h
@@ -1,14 +1,14 @@
/* preferences.h
-* Header file for the TRANSUM response time analyzer post-dissector
-* By Paul Offord <paul.offord@advance7.com>
-* Copyright 2016 Advance Seven Limited
-*
-* Wireshark - Network traffic analyzer
-* By Gerald Combs <gerald@wireshark.org>
-* Copyright 1998 Gerald Combs
-*
-* SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Header file for the TRANSUM response time analyzer post-dissector
+ * By Paul Offord <paul.offord@advance7.com>
+ * Copyright 2016 Advance Seven Limited
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#include "config.h"
#include <epan/packet.h>
#include <epan/prefs.h>
diff --git a/plugins/epan/unistim/audio.h b/plugins/epan/unistim/audio.h
index be556b80a6..bc062cd406 100644
--- a/plugins/epan/unistim/audio.h
+++ b/plugins/epan/unistim/audio.h
@@ -1,13 +1,13 @@
/* audio.h
- * header field declarations, value_string definitions and true_false_string
- * definitions for audio manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string definitions and true_false_string
+ * definitions for audio manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_AUDIO_H
diff --git a/plugins/epan/unistim/basic.h b/plugins/epan/unistim/basic.h
index 0fe3a32612..9429ce98e2 100644
--- a/plugins/epan/unistim/basic.h
+++ b/plugins/epan/unistim/basic.h
@@ -1,13 +1,13 @@
/* basic.h
- * header field declarations, value_string def and true_false_string
- * definitions for basic manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for basic manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_BASIC_H
diff --git a/plugins/epan/unistim/broadcast.h b/plugins/epan/unistim/broadcast.h
index e080163da6..4c85afc476 100644
--- a/plugins/epan/unistim/broadcast.h
+++ b/plugins/epan/unistim/broadcast.h
@@ -1,13 +1,13 @@
/* broadcast.h
- * header field declarations, value_string def and true_false_string
- * definitions for broadcast manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for broadcast manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_BROADCAST_H
diff --git a/plugins/epan/unistim/defines.h b/plugins/epan/unistim/defines.h
index b6fef4f9d3..b7a06092cc 100644
--- a/plugins/epan/unistim/defines.h
+++ b/plugins/epan/unistim/defines.h
@@ -1,13 +1,13 @@
/* defines.h
- * Contains all bitmask defines for unistim dissecting
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
-*/
+ * Contains all bitmask defines for unistim dissecting
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
#ifndef UNISTIM_DEFINES
#define UNISTIM_DEFINES
diff --git a/plugins/epan/unistim/display.h b/plugins/epan/unistim/display.h
index feec50b7ad..829441d61f 100644
--- a/plugins/epan/unistim/display.h
+++ b/plugins/epan/unistim/display.h
@@ -1,13 +1,13 @@
/*display.h
- * header field declarations, value_string def and true_false_string
- * definitions for display manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for display manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_DISPLAY_H
diff --git a/plugins/epan/unistim/expansion.h b/plugins/epan/unistim/expansion.h
index 55888a6fac..4081ca84fa 100644
--- a/plugins/epan/unistim/expansion.h
+++ b/plugins/epan/unistim/expansion.h
@@ -1,13 +1,13 @@
/* expansion.h
- * header field declarations, value_string def and true_false_string
- * definitions for basic manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for basic manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_EXPANSION_H
#define UNISTIM_EXPANSION_H
diff --git a/plugins/epan/unistim/key.h b/plugins/epan/unistim/key.h
index 634cfe9401..43acba8d63 100644
--- a/plugins/epan/unistim/key.h
+++ b/plugins/epan/unistim/key.h
@@ -1,13 +1,13 @@
/* key.h
- * header field declarations, value_string def and true_false_string
- * definitions for key manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for key manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_KEY_H
diff --git a/plugins/epan/unistim/network.h b/plugins/epan/unistim/network.h
index d819ee5e38..561ef8dcb1 100644
--- a/plugins/epan/unistim/network.h
+++ b/plugins/epan/unistim/network.h
@@ -1,13 +1,13 @@
/* network.h
- * header field declarations, value_string def and true_false_string
- * definitions for network manager messages
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for network manager messages
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_NETWORK_H
diff --git a/plugins/epan/unistim/packet-unistim.c b/plugins/epan/unistim/packet-unistim.c
index 7e6472b0ca..7873584bd3 100644
--- a/plugins/epan/unistim/packet-unistim.c
+++ b/plugins/epan/unistim/packet-unistim.c
@@ -1,12 +1,12 @@
/* packet-unistim.c
- * Routines for unistim packet dissection
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * Routines for unistim packet dissection
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
diff --git a/plugins/epan/unistim/packet-unistim.h b/plugins/epan/unistim/packet-unistim.h
index e470f25690..b1462a6ac1 100644
--- a/plugins/epan/unistim/packet-unistim.h
+++ b/plugins/epan/unistim/packet-unistim.h
@@ -1,13 +1,13 @@
/* packet-unistim.h
- * header field declarations, value_string definitions, true_false_string
- * definitions and function prototypes for main dissectors
- * Copyright 2007 Don Newton <dnewton@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string definitions, true_false_string
+ * definitions and function prototypes for main dissectors
+ * Copyright 2007 Don Newton <dnewton@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_UNISTIM_H
diff --git a/plugins/epan/unistim/uftp.h b/plugins/epan/unistim/uftp.h
index 0377c70e0e..865f23b5e9 100644
--- a/plugins/epan/unistim/uftp.h
+++ b/plugins/epan/unistim/uftp.h
@@ -1,13 +1,13 @@
/* uftp.h
- * header field declarations, value_string def and true_false_string
- * definitions for uftp commands and messages
- * Copyright 2007 Chad Singer <csinger@cypresscom.net>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
+ * header field declarations, value_string def and true_false_string
+ * definitions for uftp commands and messages
+ * Copyright 2007 Chad Singer <csinger@cypresscom.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UNISTIM_UFTP_H