aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-06-06 09:44:31 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-06-06 09:44:31 +0300
commitfa7d6111503159af4aa96c0517d0e9774adf6791 (patch)
tree9ccb8ef1b7abdfe0d970a7786ca0ef7fee9fd00f
parent9f05d3e44d08d5e2d8291d613a70d5ec7a9e7ada (diff)
downloadtallyman-fa7d6111503159af4aa96c0517d0e9774adf6791.tar.gz
tallyman-fa7d6111503159af4aa96c0517d0e9774adf6791.tar.bz2
Add copyright headers
-rw-r--r--configure.ac9
-rw-r--r--src/Makefile.am6
-rw-r--r--src/config.c6
-rw-r--r--src/defs.h6
-rw-r--r--src/getdefgw.c6
-rw-r--r--src/hostname.c22
-rw-r--r--src/pidfile.c6
-rw-r--r--src/remoteip.c6
-rw-r--r--src/runas.c6
-rw-r--r--src/shttp.c6
-rw-r--r--src/stevedore.c12
-rw-r--r--src/stevedore.h6
-rw-r--r--src/subagent.c6
-rw-r--r--src/tallyman.c6
-rw-r--r--src/tallyman.h6
-rw-r--r--src/wrapacl.c6
16 files changed, 96 insertions, 25 deletions
diff --git a/configure.ac b/configure.ac
index da87512..8584d87 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,12 @@
-# -*- Autoconf -*-
-# Process this file with autoconf to produce a configure script.
+# This file is part of tallyman -*- Autoconf -*-
+# Copyryght (C) 2018 Sergey Poznyakoff
+# License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+# This is free software: you are free to change and redistribute it.
+# There is NO WARRANTY, to the extent permitted by law.
AC_PREREQ([2.69])
AC_INIT([tallyman], [0.99], [gray@gnu.org])
-AC_CONFIG_SRCDIR([src/getdefgw.c])
+AC_CONFIG_SRCDIR([src/tallyman.c])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.11 foreign])
diff --git a/src/Makefile.am b/src/Makefile.am
index 62cd5d7..9d7b964 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,3 +1,9 @@
+# This file is part of tallyman
+# Copyryght (C) 2018 Sergey Poznyakoff
+# License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+# This is free software: you are free to change and redistribute it.
+# There is NO WARRANTY, to the extent permitted by law.
+
bin_PROGRAMS=tallyman
sbin_PROGRAMS=stevedore
diff --git a/src/config.c b/src/config.c
index 77549c5..aad6d5a 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/defs.h b/src/defs.h
index ada382c..989116e 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#ifndef SYSCONFDIR
# define SYSCONFDIR "/etc"
#endif
diff --git a/src/getdefgw.c b/src/getdefgw.c
index 14feff2..d56997a 100644
--- a/src/getdefgw.c
+++ b/src/getdefgw.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <stdlib.h>
#include <string.h>
#include <linux/netlink.h>
diff --git a/src/hostname.c b/src/hostname.c
index 4897bd7..9e22513 100644
--- a/src/hostname.c
+++ b/src/hostname.c
@@ -1,19 +1,9 @@
-/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2010-2012, 2014-2018 Free Software Foundation, Inc.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 3 of the License, or (at your option) any later version.
-
- This library 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
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General
- Public License along with this library. If not, see
- <http://www.gnu.org/licenses/>. */
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#if HAVE_CONFIG_H
# include <config.h>
diff --git a/src/pidfile.c b/src/pidfile.c
index 0e958ac..b0a9db2 100644
--- a/src/pidfile.c
+++ b/src/pidfile.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include "config.h"
#include "stevedore.h"
#include <stdio.h>
diff --git a/src/remoteip.c b/src/remoteip.c
index d0b7fcf..0d858fe 100644
--- a/src/remoteip.c
+++ b/src/remoteip.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
diff --git a/src/runas.c b/src/runas.c
index 3576947..c0f7e85 100644
--- a/src/runas.c
+++ b/src/runas.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
diff --git a/src/shttp.c b/src/shttp.c
index e6caada..60c6800 100644
--- a/src/shttp.c
+++ b/src/shttp.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/stevedore.c b/src/stevedore.c
index a8ffc2b..7e6ccb0 100644
--- a/src/stevedore.c
+++ b/src/stevedore.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
@@ -91,12 +97,6 @@ info(char const *fmt, ...)
}
void
-fileserv_logger(void *arg, const char *fmt, va_list ap)
-{
- vlog(LOG_ERR, fmt, ap);
-}
-
-void
syslog_enable(void)
{
openlog(syslog_tag, LOG_PID, log_facility);
diff --git a/src/stevedore.h b/src/stevedore.h
index 921eb05..d9d5151 100644
--- a/src/stevedore.h
+++ b/src/stevedore.h
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <assert.h>
#include "grecs.h"
#include "grecs/json.h"
diff --git a/src/subagent.c b/src/subagent.c
index 202f00c..6b82287 100644
--- a/src/subagent.c
+++ b/src/subagent.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <stdlib.h>
#include <string.h>
#include <time.h>
diff --git a/src/tallyman.c b/src/tallyman.c
index 8f60b23..9ae6ca5 100644
--- a/src/tallyman.c
+++ b/src/tallyman.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/src/tallyman.h b/src/tallyman.h
index bd4df98..2b85d67 100644
--- a/src/tallyman.h
+++ b/src/tallyman.h
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
enum http_method {
METH_GET,
METH_POST,
diff --git a/src/wrapacl.c b/src/wrapacl.c
index 3f78a5b..6cf0918 100644
--- a/src/wrapacl.c
+++ b/src/wrapacl.c
@@ -1,3 +1,9 @@
+/* This file is part of tallyman
+Copyryght (C) 2018 Sergey Poznyakoff
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+*/
#include <tcpd.h>
#include <microhttpd.h>

Return to:

Send suggestions and report system problems to the System administrator.