aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile3
-rw-r--r--src/_usage.c1
-rw-r--r--src/_usage.h1
-rw-r--r--src/builtins.h1
-rw-r--r--src/checkown.c1
-rw-r--r--src/einfo.h1
-rw-r--r--src/fstabinfo.c1
-rw-r--r--src/hidden-visibility.h25
-rw-r--r--src/libeinfo.c4
-rw-r--r--src/librc-daemon.c1
-rw-r--r--src/librc-depend.c1
-rw-r--r--src/librc-depend.h1
-rw-r--r--src/librc-misc.c1
-rw-r--r--src/librc-strlist.c1
-rw-r--r--src/librc.c4
-rw-r--r--src/librc.h1
-rw-r--r--src/mountinfo.c1
-rw-r--r--src/rc-depend.c1
-rw-r--r--src/rc-logger.c1
-rw-r--r--src/rc-logger.h6
-rw-r--r--src/rc-misc.c1
-rw-r--r--src/rc-misc.h1
-rw-r--r--src/rc-plugin.c1
-rw-r--r--src/rc-plugin.h1
-rw-r--r--src/rc-status.c1
-rw-r--r--src/rc-update.c1
-rw-r--r--src/rc.c4
-rw-r--r--src/rc.h1
-rw-r--r--src/runscript.c1
-rw-r--r--src/start-stop-daemon.c1
-rw-r--r--src/strlist.h1
31 files changed, 6 insertions, 65 deletions
diff --git a/src/Makefile b/src/Makefile
index 05b3cbe1..a103679b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,4 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
+# Copyright 2007 Roy Marples
# We should strive to keep this Makefile working with the default make
# shipped with the OS's we support. Mainly because I'm lazy and just want
diff --git a/src/_usage.c b/src/_usage.c
index aa5a1ae8..088ccb48 100644
--- a/src/_usage.c
+++ b/src/_usage.c
@@ -1,5 +1,4 @@
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/_usage.h b/src/_usage.h
index 6ee391ae..ba09255c 100644
--- a/src/_usage.h
+++ b/src/_usage.h
@@ -1,5 +1,4 @@
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/builtins.h b/src/builtins.h
index 1e7a5348..c0048eb6 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -1,5 +1,4 @@
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/checkown.c b/src/checkown.c
index 2b7069b9..e90c24ac 100644
--- a/src/checkown.c
+++ b/src/checkown.c
@@ -5,7 +5,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/einfo.h b/src/einfo.h
index 990ae6fd..dadb028d 100644
--- a/src/einfo.h
+++ b/src/einfo.h
@@ -1,5 +1,4 @@
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/fstabinfo.c b/src/fstabinfo.c
index 9888fff7..a6ffe966 100644
--- a/src/fstabinfo.c
+++ b/src/fstabinfo.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/hidden-visibility.h b/src/hidden-visibility.h
index ca2771a7..bc7e338a 100644
--- a/src/hidden-visibility.h
+++ b/src/hidden-visibility.h
@@ -1,27 +1,6 @@
/*
- * Copyright 2007 Gentoo Foundation
- * All rights reserved
-
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
+ * Written by Mike Frysinger
+ * Placed in the Public Domain
*/
#ifndef _HIDDEN_VISIBILITY_H_
diff --git a/src/libeinfo.c b/src/libeinfo.c
index 8aeea774..1ffa35eb 100644
--- a/src/libeinfo.c
+++ b/src/libeinfo.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
@@ -30,8 +29,7 @@
* SUCH DAMAGE.
*/
-const char copyright[] = "Copyright (c) 2007 Gentoo Foundation\n"
- "Copyright (c) 2007 Roy Marples";
+const char copyright[] = "Copyright (c) 2007 Roy Marples";
#include <sys/types.h>
#include <sys/ioctl.h>
diff --git a/src/librc-daemon.c b/src/librc-daemon.c
index e7e66b92..30853f26 100644
--- a/src/librc-daemon.c
+++ b/src/librc-daemon.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/librc-depend.c b/src/librc-depend.c
index e870c73c..a8e03bb0 100644
--- a/src/librc-depend.c
+++ b/src/librc-depend.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/librc-depend.h b/src/librc-depend.h
index 71ae1e80..238f70d1 100644
--- a/src/librc-depend.h
+++ b/src/librc-depend.h
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/librc-misc.c b/src/librc-misc.c
index 4df05ecf..dcecc293 100644
--- a/src/librc-misc.c
+++ b/src/librc-misc.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/librc-strlist.c b/src/librc-strlist.c
index e0f3e1de..815c8370 100644
--- a/src/librc-strlist.c
+++ b/src/librc-strlist.c
@@ -6,7 +6,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/librc.c b/src/librc.c
index 61f91525..9330a304 100644
--- a/src/librc.c
+++ b/src/librc.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
@@ -30,8 +29,7 @@
* SUCH DAMAGE.
*/
-const char copyright[] = "Copyright (c) 2007 Gentoo Foundation\n"
- "Copyright (c) 2007 Roy Marples";
+const char copyright[] = "Copyright (c) 2007 Roy Marples";
#include "librc.h"
diff --git a/src/librc.h b/src/librc.h
index f3ebd596..cf61217a 100644
--- a/src/librc.h
+++ b/src/librc.h
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/mountinfo.c b/src/mountinfo.c
index 09003d4a..3e471e49 100644
--- a/src/mountinfo.c
+++ b/src/mountinfo.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-depend.c b/src/rc-depend.c
index de0125fc..8c61d888 100644
--- a/src/rc-depend.c
+++ b/src/rc-depend.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-logger.c b/src/rc-logger.c
index 1cab3221..675a4d23 100644
--- a/src/rc-logger.c
+++ b/src/rc-logger.c
@@ -5,7 +5,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-logger.h b/src/rc-logger.h
index 61941d2d..c15e73f8 100644
--- a/src/rc-logger.h
+++ b/src/rc-logger.h
@@ -1,10 +1,4 @@
-/*
- rc-logger.h
- Copyright 2007 Gentoo Foundation
- */
-
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-misc.c b/src/rc-misc.c
index 7c88477d..b46e2273 100644
--- a/src/rc-misc.c
+++ b/src/rc-misc.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-misc.h b/src/rc-misc.h
index 985726d3..570d7e79 100644
--- a/src/rc-misc.h
+++ b/src/rc-misc.h
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-plugin.c b/src/rc-plugin.c
index d02f277b..613f049e 100644
--- a/src/rc-plugin.c
+++ b/src/rc-plugin.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-plugin.h b/src/rc-plugin.h
index 4f678baf..412a47e7 100644
--- a/src/rc-plugin.h
+++ b/src/rc-plugin.h
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-status.c b/src/rc-status.c
index 535f438a..bf4d63d3 100644
--- a/src/rc-status.c
+++ b/src/rc-status.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc-update.c b/src/rc-update.c
index d5f2ba92..38d48e03 100644
--- a/src/rc-update.c
+++ b/src/rc-update.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/rc.c b/src/rc.c
index ae463bed..afc41488 100644
--- a/src/rc.c
+++ b/src/rc.c
@@ -9,7 +9,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
@@ -35,8 +34,7 @@
* SUCH DAMAGE.
*/
-const char copyright[] = "Copyright (c) 2007 Gentoo Foundation\n"
- "Copyright (c) 2007 Roy Marples";
+const char copyright[] = "Copyright (c) 2007 Roy Marples";
#define APPLET "rc"
diff --git a/src/rc.h b/src/rc.h
index 6a53e7ce..776c1678 100644
--- a/src/rc.h
+++ b/src/rc.h
@@ -1,5 +1,4 @@
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/runscript.c b/src/runscript.c
index 88ce71b8..108512ae 100644
--- a/src/runscript.c
+++ b/src/runscript.c
@@ -4,7 +4,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/start-stop-daemon.c b/src/start-stop-daemon.c
index 1f59d986..82fa99a4 100644
--- a/src/start-stop-daemon.c
+++ b/src/start-stop-daemon.c
@@ -8,7 +8,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved
diff --git a/src/strlist.h b/src/strlist.h
index 6c15d18c..3abe44ff 100644
--- a/src/strlist.h
+++ b/src/strlist.h
@@ -5,7 +5,6 @@
*/
/*
- * Copyright 2007 Gentoo Foundation
* Copyright 2007 Roy Marples
* All rights reserved