diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 17:48:53 (GMT) |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 17:48:53 (GMT) |
commit | 694194dd8ab4d9115554f386938d503d60c96e9e (patch) | |
tree | 1b67ca4a6a9146f3f9aa022b6575db9c98490657 | |
parent | c1af46b89043970495cb683437e2f2a79f52df2f (diff) | |
download | monitoring-plugins-694194dd8ab4d9115554f386938d503d60c96e9e.tar.gz |
some minor fixes
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@992 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | ROADMAP | 4 | ||||
-rw-r--r-- | package.def | 2 | ||||
-rw-r--r-- | plugins/negate.c | 5 | ||||
-rw-r--r-- | plugins/utils.h | 2 |
4 files changed, 7 insertions, 6 deletions
@@ -11,7 +11,7 @@ DOCUMENTATION: | |||
11 | the lines of a literate programming model. So far, we have site | 11 | the lines of a literate programming model. So far, we have site |
12 | documentation in DocBook. I have some ideas here, which I will | 12 | documentation in DocBook. I have some ideas here, which I will |
13 | discuss in a separate thread. | 13 | discuss in a separate thread. |
14 | 14 | ||
15 | 15 | ||
16 | 16 | ||
17 | OPTION PROCESSING: | 17 | OPTION PROCESSING: |
@@ -80,7 +80,7 @@ As has been the case, ranges are specified with colons, like 'i:j' | |||
80 | and list are specified with commas like 'i,k' and may contain ranges | 80 | and list are specified with commas like 'i,k' and may contain ranges |
81 | if it makes sense to do so. Perhaps it would be good to build a | 81 | if it makes sense to do so. Perhaps it would be good to build a |
82 | standard list/range processing function for this task. | 82 | standard list/range processing function for this task. |
83 | 83 | ||
84 | 84 | ||
85 | Programming: | 85 | Programming: |
86 | I would like to follow the GNU guidelines and remove all fixed | 86 | I would like to follow the GNU guidelines and remove all fixed |
diff --git a/package.def b/package.def index 37e147b..282aeef 100644 --- a/package.def +++ b/package.def | |||
@@ -1 +1 @@ | |||
PACKAGE_RELEASE="1.3.0-alpha1" | PACKAGE_RELEASE="1.4.0-alpha2" | ||
diff --git a/plugins/negate.c b/plugins/negate.c index e0f9975..e03f7e6 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
@@ -274,7 +274,8 @@ Otherwise, the output state of the wrapped plugin is unchanged.\n")); | |||
274 | void | 274 | void |
275 | print_usage (void) | 275 | print_usage (void) |
276 | { | 276 | { |
277 | printf (_("Usage: %s [-t timeout] <definition of wrapped plugin>\n"), | 277 | printf ("Usage: %s [-t timeout] <definition of wrapped plugin>\n", |
278 | progname); | 278 | progname); |
279 | printf (_(UT_HLP_VRS), progname, progname); | 279 | |
280 | printf (UT_HLP_VRS, progname, progname); | ||
280 | } | 281 | } |
diff --git a/plugins/utils.h b/plugins/utils.h index a3ddc0a..4fc1305 100644 --- a/plugins/utils.h +++ b/plugins/utils.h | |||
@@ -164,7 +164,7 @@ Send email to nagios-users@lists.sourceforge.net if you have questions\n\ | |||
164 | regarding use of this software. To submit patches or suggest improvements,\n\ | 164 | regarding use of this software. To submit patches or suggest improvements,\n\ |
165 | send email to nagiosplug-devel@lists.sourceforge.net\n" | 165 | send email to nagiosplug-devel@lists.sourceforge.net\n" |
166 | 166 | ||
167 | #define UT_NOWARRANTY "\ | 167 | #define UT_NOWARRANTY "\n\ |
168 | The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n\ | 168 | The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n\ |
169 | copies of the plugins under the terms of the GNU General Public License.\n\ | 169 | copies of the plugins under the terms of the GNU General Public License.\n\ |
170 | For more information about these matters, see the file named COPYING.\n" | 170 | For more information about these matters, see the file named COPYING.\n" |