Mailinglist Archive: opensuse-commit (1421 mails)
| < Previous | Next > |
commit nagios-plugins
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Tue, 06 May 2008 01:40:32 +0200
- Message-id: <20080505234033.3E0E0678168@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package nagios-plugins
checked in at Tue May 6 01:40:32 CEST 2008.
--------
--- nagios-plugins/nagios-plugins.changes 2008-04-17 14:19:59.000000000
+0200
+++ /mounts/work_src_done/STABLE/nagios-plugins/nagios-plugins.changes
2008-05-05 15:58:54.000000000 +0200
@@ -1,0 +2,5 @@
+Mon May 5 15:58:36 CEST 2008 - olh@xxxxxxx
+
+- fix return type of validate_arguments() in negate.c
+
+-------------------------------------------------------------------
New:
----
nagios-plugins.negate.validate_arguments.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ nagios-plugins.spec ++++++
--- /var/tmp/diff_new_pack.J24044/_old 2008-05-06 01:40:13.000000000 +0200
+++ /var/tmp/diff_new_pack.J24044/_new 2008-05-06 01:40:13.000000000 +0200
@@ -14,7 +14,7 @@
Name: nagios-plugins
Summary: The Nagios Plug-Ins
Version: 1.4.11
-Release: 39
+Release: 46
Url: http://nagiosplug.sourceforge.net/
License: GPL v2 or later
Group: System/Monitoring
@@ -48,6 +48,7 @@
Patch10: nagios-plugins.asprintf.patch
Patch11: nagios-plugins.check_snmp.arrayaddress.patch
Patch12: nagios-plugins-postgresql.patch
+Patch13: nagios-plugins.negate.validate_arguments.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: perl-Net-SNMP
%define libexecdir %_prefix/lib/nagios/plugins
@@ -101,6 +102,7 @@
%patch10 -p1
%patch11
%patch12
+%patch13 -p1
%build
export CFLAGS="%optflags -fno-strict-aliasing -DLDAP_DEPRECATED"
@@ -212,6 +214,8 @@
%libexecdir/check_game
%changelog
+* Mon May 05 2008 olh@xxxxxxx
+- fix return type of validate_arguments() in negate.c
* Thu Apr 17 2008 max@xxxxxxx
- NAMEDATALEN is defined in pg_config_manual.h in PostgreSQL 8.3.
* Mon Mar 10 2008 olh@xxxxxxx
++++++ nagios-plugins.negate.validate_arguments.patch ++++++
---
plugins/negate.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/plugins/negate.c
+++ b/plugins/negate.c
@@ -82,7 +82,7 @@ const char *email = "nagiosplug-devel@li
/* char *command_line; */
static const char **process_arguments (int, char **);
-int validate_arguments (char **);
+void validate_arguments (char **);
void print_help (void);
void print_usage (void);
@@ -252,7 +252,7 @@ process_arguments (int argc, char **argv
-int
+void
validate_arguments (char **command_line)
{
if (command_line[0] == NULL)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |