Hello community,

here is the log from the commit of package nagios-plugins for openSUSE:Factory 
checked in at 2013-01-13 14:30:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nagios-plugins (Old)
 and      /work/SRC/openSUSE:Factory/.nagios-plugins.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nagios-plugins", Maintainer is "lr...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/nagios-plugins/nagios-plugins.changes    
2012-12-28 22:45:59.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.nagios-plugins.new/nagios-plugins.changes       
2013-01-13 14:30:12.000000000 +0100
@@ -1,0 +2,7 @@
+Tue Dec 25 18:41:36 UTC 2012 - l...@linux-schulserver.de
+
+- added nagios-plugins-check_disk_printf.patch: fix wrong number
+  of printf arguments if verbose
+- refreshed patches
+
+-------------------------------------------------------------------

New:
----
  nagios-plugins-check_disk_printf.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nagios-plugins.spec ++++++
--- /var/tmp/diff_new_pack.gIOXcF/_old  2013-01-13 14:30:14.000000000 +0100
+++ /var/tmp/diff_new_pack.gIOXcF/_new  2013-01-13 14:30:14.000000000 +0100
@@ -46,6 +46,7 @@
 Patch13:        nagios-plugins.negate.validate_arguments.patch
 Patch14:        nagios-plugins-stdio.h.patch
 Patch116:       nagios-plugins-wrong_return_in_check_swap.patch
+Patch117:       nagios-plugins-check_disk_printf.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bind-utils
 BuildRequires:  dhcp-devel
@@ -894,6 +895,7 @@
 %patch14 -p1
 # Debian patches
 %patch116 -p1
+%patch117 -p1
 pushd contrib
 %{__rm} -r aix
 find -type f -exec %{__chmod} 644 {} \;

++++++ nagios-plugins-1.4.6-no_chown.patch ++++++
--- /var/tmp/diff_new_pack.gIOXcF/_old  2013-01-13 14:30:14.000000000 +0100
+++ /var/tmp/diff_new_pack.gIOXcF/_new  2013-01-13 14:30:14.000000000 +0100
@@ -1,7 +1,7 @@
 Index: plugins-root/Makefile.am
 ===================================================================
---- plugins-root/Makefile.am.orig      2008-11-30 22:23:18.000000000 +0100
-+++ plugins-root/Makefile.am   2009-11-24 23:08:35.500699000 +0100
+--- plugins-root/Makefile.am.orig
++++ plugins-root/Makefile.am
 @@ -47,7 +47,6 @@ INSTALL_SUID = \
        echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libexecdir)/$$p"; \
        $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libexecdir)/$$p; \
@@ -28,9 +28,9 @@
  # /* Author Coreutils team sub-citation */
 Index: plugins-root/Makefile.in
 ===================================================================
---- plugins-root/Makefile.in.orig      2009-09-16 10:37:59.000000000 +0200
-+++ plugins-root/Makefile.in   2009-11-24 23:08:35.738700000 +0100
-@@ -768,7 +768,6 @@ INSTALL_SUID = \
+--- plugins-root/Makefile.in.orig
++++ plugins-root/Makefile.in
+@@ -1015,7 +1015,6 @@ INSTALL_SUID = \
        echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libexecdir)/$$p"; \
        $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libexecdir)/$$p; \
        echo " chown root $(DESTDIR)$(libexecdir)/$$p"; \
@@ -38,7 +38,7 @@
        echo " chmod $(setuid_root_mode) $(DESTDIR)$(libexecdir)/$$p"; \
        chmod $(setuid_root_mode) $(DESTDIR)$(libexecdir)/$$p; \
        done
-@@ -1157,11 +1156,11 @@ install-exec-local: $(noinst_PROGRAMS)
+@@ -1450,11 +1449,11 @@ install-exec-local: $(noinst_PROGRAMS)
          && chmod $(setuid_root_mode) $$TMPFILE > /dev/null 2>&1 \
          && can_create_suid_root_executable=yes; \
        rm -f $$TMPFILE; \

++++++ nagios-plugins-check_disk_printf.patch ++++++
Index: nagios-plugins-1.4.16/plugins/check_disk.c
===================================================================
--- nagios-plugins-1.4.16.orig/plugins/check_disk.c
+++ nagios-plugins-1.4.16/plugins/check_disk.c
@@ -958,7 +958,7 @@ get_stats (struct parameter_list *p, str
         if (verbose >= 3)
           printf("Group %s: adding %llu blocks sized %llu, (%s) used_units=%g 
free_units=%g total_units=%g fsu_blocksize=%llu mult=%llu\n",
                  p_list->group, tmpfsp.fsu_bavail, tmpfsp.fsu_blocksize, 
p_list->best_match->me_mountdir, p_list->dused_units, p_list->dfree_units,
-                 p_list->dtotal_units, mult);
+                 p_list->dtotal_units, tmpfsp.fsu_blocksize, mult);
 
         /* prevent counting the first FS of a group twice since its 
parameter_list entry 
          * is used to carry the information of all file systems of the entire 
group */
++++++ nagios-plugins.check_snmp.arrayaddress.patch ++++++
--- /var/tmp/diff_new_pack.gIOXcF/_old  2013-01-13 14:30:14.000000000 +0100
+++ /var/tmp/diff_new_pack.gIOXcF/_new  2013-01-13 14:30:14.000000000 +0100
@@ -1,8 +1,8 @@
 Index: plugins/check_snmp.c
 ===================================================================
---- plugins/check_snmp.c.orig  2010-07-27 22:47:16.000000000 +0200
-+++ plugins/check_snmp.c       2010-10-08 14:27:58.000000000 +0200
-@@ -498,7 +498,7 @@ main (int argc, char **argv)
+--- plugins/check_snmp.c.orig
++++ plugins/check_snmp.c
+@@ -507,7 +507,7 @@ main (int argc, char **argv)
                        len = sizeof(perfstr)-strlen(perfstr)-1;
                        strncat(perfstr, show, len>ptr-show ? ptr-show : len);
  

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to