Explorar el Código

some minor fixes

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@992 f882894a-f735-0410-b71e-b25c423dba1c
Benoit Mortier hace 21 años
padre
commit
694194dd8a
Se han modificado 4 ficheros con 7 adiciones y 6 borrados
  1. 2 2
      ROADMAP
  2. 1 1
      package.def
  3. 3 2
      plugins/negate.c
  4. 1 1
      plugins/utils.h

+ 2 - 2
ROADMAP

@@ -11,7 +11,7 @@ DOCUMENTATION:
   the lines of a literate programming model. So far, we have site 
   the lines of a literate programming model. So far, we have site 
   documentation in DocBook. I have some ideas here, which I will
   documentation in DocBook. I have some ideas here, which I will
   discuss in a separate thread.
   discuss in a separate thread.
-
+
 
 
 
 
 OPTION PROCESSING:
 OPTION PROCESSING:
@@ -80,7 +80,7 @@ As has been the case, ranges are specified with colons, like 'i:j'
 and list are specified with commas like 'i,k' and may contain ranges
 and list are specified with commas like 'i,k' and may contain ranges
 if it makes sense to do so. Perhaps it would be good to build a
 if it makes sense to do so. Perhaps it would be good to build a
 standard list/range processing function for this task.
 standard list/range processing function for this task.
-
+
 
 
 Programming:
 Programming:
   I would like to follow the GNU guidelines and remove all fixed
   I would like to follow the GNU guidelines and remove all fixed

+ 1 - 1
package.def

@@ -1 +1 @@
-PACKAGE_RELEASE="1.3.0-alpha1"
+PACKAGE_RELEASE="1.4.0-alpha2"

+ 3 - 2
plugins/negate.c

@@ -274,7 +274,8 @@ Otherwise, the output state of the wrapped plugin is unchanged.\n"));
 void
 void
 print_usage (void)
 print_usage (void)
 {
 {
-	printf (_("Usage: %s [-t timeout] <definition of wrapped plugin>\n"),
+	printf ("Usage: %s [-t timeout] <definition of wrapped plugin>\n",
 	        progname);
 	        progname);
-	printf (_(UT_HLP_VRS), progname, progname);
+					
+	printf (UT_HLP_VRS, progname, progname);
 }
 }

+ 1 - 1
plugins/utils.h

@@ -164,7 +164,7 @@ Send email to nagios-users@lists.sourceforge.net if you have questions\n\
 regarding use of this software. To submit patches or suggest improvements,\n\
 regarding use of this software. To submit patches or suggest improvements,\n\
 send email to nagiosplug-devel@lists.sourceforge.net\n"
 send email to nagiosplug-devel@lists.sourceforge.net\n"
 
 
-#define UT_NOWARRANTY "\
+#define UT_NOWARRANTY "\n\
 The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n\
 The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n\
 copies of the plugins under the terms of the GNU General Public License.\n\
 copies of the plugins under the terms of the GNU General Public License.\n\
 For more information about these matters, see the file named COPYING.\n"
 For more information about these matters, see the file named COPYING.\n"