aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-09-09 18:06:10 +0300
committerSergey Poznyakoff <gray@gnu.org>2020-09-09 18:06:10 +0300
commitf0bf6afbea81979ce51103a3e499f89305afbf8b (patch)
treeadfd7fabe35917864fd0d93552fe8340e6d0eca9
parentfb0f0c9767831a373ab6a46781fad52987191c12 (diff)
downloadgenrc-f0bf6afbea81979ce51103a3e499f89305afbf8b.tar.gz
genrc-f0bf6afbea81979ce51103a3e499f89305afbf8b.tar.bz2
Version 1.2v1.2
-rw-r--r--NEWS1
-rw-r--r--configure.ac4
-rw-r--r--src/genrc.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 153fad6..98e673e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,17 +1,18 @@
genrc NEWS -- history of user-visible changes. 2020-09-09
See the end of file for copying conditions.
Please send genrc bug reports to <gray@gnu.org> or <gray@gnu.org.ua>
+Version 1.2, 2020-09-09
* Verbose diagnostics
Verbose diagnostics is enabled by the -v,--verbose option.
* Shell selection
By default, the program is started using "/bin/sh -c". Two options
are provided to alter this behavior:
-s, --shell=SHELL
Use SHELL to start the program. Default is /bin/sh.
diff --git a/configure.ac b/configure.ac
index 2610762..35b5964 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,30 +1,30 @@
# This file is part of genrc. -*- Autoconf -*-
-# Copyright (C) 2018 Sergey Poznyakoff.
+# Copyright (C) 2018-2020 Sergey Poznyakoff.
#
# Genrc 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 3, or (at your option)
# any later version.
#
# Genrc 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 genrc. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ([2.69])
-AC_INIT([genrc], [1.1], [gray@gnu.org])
+AC_INIT([genrc], [1.2], [gray@gnu.org])
AC_CONFIG_SRCDIR([src/genrc.c])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.11 foreign silent-rules])
AC_CONFIG_MACRO_DIR(grecs/am)
# Enable silent rules by default
AM_SILENT_RULES([yes])
# Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB
diff --git a/src/genrc.c b/src/genrc.c
index 04845d0..868dfb0 100644
--- a/src/genrc.c
+++ b/src/genrc.c
@@ -491,25 +491,25 @@ usage(void)
}
static const char gplv3[] =
"License GPLv3+: GNU GPL version 3 or later "
"<http://gnu.org/licenses/gpl.html>\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n";
void
version(void)
{
printf("%s\n", PACKAGE_STRING);
- printf("Copyryght (C) 2018--2020 Sergey Poznyakoff\n");
+ printf("Copyryght (C) 2018-2020 Sergey Poznyakoff\n");
printf("%s", gplv3);
}
static struct facility_def {
char const *name;
int facility;
} facility_tab[] = {
{ "auth", LOG_AUTH },
{ "authpriv",LOG_AUTHPRIV },
{ "cron", LOG_CRON },
{ "daemon", LOG_DAEMON },
{ "ftp", LOG_FTP },

Return to:

Send suggestions and report system problems to the System administrator.