summaryrefslogtreecommitdiff
path: root/wsutil/copyright_info.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-06-21 10:32:12 -0700
committerGuy Harris <guy@alum.mit.edu>2014-06-21 17:33:05 +0000
commit43443af0acc93e47a145688171049af65eed762f (patch)
tree2e2dae2d9706981a43a1c6f2edd0f1e7771eaec3 /wsutil/copyright_info.c
parent37b903d7abab78a6f13b61feb88f62f2fa638151 (diff)
downloadwireshark-43443af0acc93e47a145688171049af65eed762f.tar.gz
Move get_copyright_info() to wsutil.
Change-Id: I75c1c747cd2b4a9845c659636582d54b2caecf1a Reviewed-on: https://code.wireshark.org/review/2510 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/copyright_info.c')
-rw-r--r--wsutil/copyright_info.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/wsutil/copyright_info.c b/wsutil/copyright_info.c
new file mode 100644
index 0000000000..f95a584b57
--- /dev/null
+++ b/wsutil/copyright_info.c
@@ -0,0 +1,37 @@
+/* copyright_info.c
+ * Routines to report copyright information for stuff used by Wireshark
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include "config.h"
+
+#include <wsutil/copyright_info.h>
+
+/*
+ * Get copyright information.
+ */
+const char *
+get_copyright_info(void)
+{
+ return
+"Copyright 1998-2014 Gerald Combs <gerald@wireshark.org> and contributors.\n"
+"This is free software; see the source for copying conditions. There is NO\n"
+"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
+}