aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2019-08-13 13:50:46 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2019-08-13 13:50:46 +0300
commit0b879bfdb75fa698e0f33b9c39671dc4af7dbaa6 (patch)
tree06998e70352fb2712866d41397e26e727066ac8f
parentdf3b5c835353c07d19316cc99b9d56b76aeabf28 (diff)
downloadtallyman-0b879bfdb75fa698e0f33b9c39671dc4af7dbaa6.tar.gz
tallyman-0b879bfdb75fa698e0f33b9c39671dc4af7dbaa6.tar.bz2
Add missing long optionv1.0.1
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
-rw-r--r--src/tallyman.c1
3 files changed, 6 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e111338..1482629 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,15 @@
tallyman -- history of user-visible changes. 2019-08-13
See the end of file for copying conditions.
Please send tallyman bug reports to <gray+tallyman@gnu.org.ua>
+Version 1.0.1, 2019-08-13
+
+Add missing long option.
+
Version 1.0, 2019-08-13
Initial release.
=========================================================================
diff --git a/configure.ac b/configure.ac
index b182729..8cbd89f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,13 +2,13 @@
# Copyright (C) 2018, 2019 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], [1.0], [gray+tallyman@gnu.org])
+AC_INIT([tallyman], [1.0.1], [gray+tallyman@gnu.org])
AC_CONFIG_SRCDIR([src/tallyman.c])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.15 foreign])
# Checks for programs.
AC_PROG_CC
diff --git a/src/tallyman.c b/src/tallyman.c
index a9a79b0..df40fa2 100644
--- a/src/tallyman.c
+++ b/src/tallyman.c
@@ -35,12 +35,13 @@ struct option longopts[] = {
{ "hostname", required_argument, 0, 'h' },
{ "value", required_argument, 0, 'v' },
{ "debug", no_argument, 0, 'd' },
{ "connection-timeout", required_argument, 0, OPT_CONNECTION_TIMEOUT },
{ "execution-timeout", required_argument, 0, OPT_EXECUTION_TIMEOUT },
{ "version", no_argument, 0, 'V' },
+ { "quiet", no_argument, 0, 'q' },
{ NULL }
};
static char shortopts[] = "+?ds:h:qv:V";
void
help(void)

Return to:

Send suggestions and report system problems to the System administrator.