diff -Nru ledmon-0.31/debian/changelog ledmon-0.32/debian/changelog --- ledmon-0.31/debian/changelog 2012-02-06 04:56:32.000000000 +0000 +++ ledmon-0.32/debian/changelog 2012-03-05 18:11:47.000000000 +0000 @@ -1,3 +1,10 @@ +ledmon (0.32-1) unstable; urgency=low + + * New upstream release + * Fixes issue where HOTSPARE had higher priority than REBUILD + + -- Daniel Jared Dominguez Mon, 05 Mar 2012 11:41:06 -0600 + ledmon (0.31-1) unstable; urgency=low * Initial release (Closes: #658815) diff -Nru ledmon-0.31/debian/control ledmon-0.32/debian/control --- ledmon-0.31/debian/control 2012-02-06 04:53:10.000000000 +0000 +++ ledmon-0.32/debian/control 2012-03-05 18:29:31.000000000 +0000 @@ -2,8 +2,8 @@ Section: admin Priority: extra Maintainer: Daniel Jared Dominguez -Build-Depends: debhelper (>= 7.0.50~), perl -Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 8), perl +Standards-Version: 3.9.1 Homepage: http://ledmon.sourceforge.net/ Package: ledmon diff -Nru ledmon-0.31/doc/Makefile ledmon-0.32/doc/Makefile --- ledmon-0.31/doc/Makefile 2012-01-31 15:09:50.000000000 +0000 +++ ledmon-0.32/doc/Makefile 2012-02-14 11:07:21.000000000 +0000 @@ -22,8 +22,8 @@ MAN8_INSTDIR=$(MAN_INSTDIR)/man8 MAN5_INSTDIR=$(MAN_INSTDIR)/man5 -RELEASE_DATE?="January 2012" -RELEASE_VER?=0.31 +RELEASE_DATE?="February 2012" +RELEASE_VER?=0.32 default: all diff -Nru ledmon-0.31/README ledmon-0.32/README --- ledmon-0.31/README 2012-01-30 10:25:23.000000000 +0000 +++ ledmon-0.32/README 2012-02-14 11:06:07.000000000 +0000 @@ -1,4 +1,4 @@ -This package contains the Enclosure LED Utilities, version 0.31 +This package contains the Enclosure LED Utilities, version 0.32 Copyright (C) 2009,2011 Intel Corporation. diff -Nru ledmon-0.31/src/ibpi.h ledmon-0.32/src/ibpi.h --- ledmon-0.31/src/ibpi.h 2012-01-31 15:09:50.000000000 +0000 +++ ledmon-0.32/src/ibpi.h 2012-02-14 11:07:20.000000000 +0000 @@ -60,10 +60,10 @@ IBPI_PATTERN_NORMAL, IBPI_PATTERN_ONESHOT_NORMAL, IBPI_PATTERN_DEGRADED, + IBPI_PATTERN_HOTSPARE, IBPI_PATTERN_REBUILD, IBPI_PATTERN_REBUILD_P, IBPI_PATTERN_FAILED_ARRAY, - IBPI_PATTERN_HOTSPARE, IBPI_PATTERN_PFA, IBPI_PATTERN_FAILED_DRIVE, IBPI_PATTERN_LOCATE, diff -Nru ledmon-0.31/src/utils.c ledmon-0.32/src/utils.c --- ledmon-0.31/src/utils.c 2012-01-31 15:09:50.000000000 +0000 +++ ledmon-0.32/src/utils.c 2012-02-14 11:07:20.000000000 +0000 @@ -431,9 +431,7 @@ char *str_cpy(char *dest, const char *src, size_t size) { strncpy(dest, src, size - 1); - if (size < strlen(src)) { - dest[size - 1] = '\0'; - } + dest[size - 1] = '\0'; return dest; } diff -Nru ledmon-0.31/src/version.h ledmon-0.32/src/version.h --- ledmon-0.31/src/version.h 2012-01-31 15:09:49.000000000 +0000 +++ ledmon-0.32/src/version.h 2012-02-14 11:07:20.000000000 +0000 @@ -36,7 +36,7 @@ * in makefile to reflect current version number. */ #ifndef VERSION_MINOR -#define VERSION_MINOR 31 +#define VERSION_MINOR 32 #endif #endif /* _VERSION_H_INCLUDED_ */