[pve-devel] r5092 - in vzctl/trunk: . debian debian/patches
svn-commits at proxmox.com
svn-commits at proxmox.com
Fri Sep 3 14:19:56 CEST 2010
Author: dietmar
Date: 2010-09-03 12:19:55 +0000 (Fri, 03 Sep 2010)
New Revision: 5092
Added:
vzctl/trunk/debian/patches/fix-list2str.patch
Modified:
vzctl/trunk/Makefile
vzctl/trunk/debian/changelog
vzctl/trunk/debian/patches/series
Log:
* fix bug in list2str (fix-list2str.patch)
Modified: vzctl/trunk/Makefile
===================================================================
--- vzctl/trunk/Makefile 2010-09-03 10:50:12 UTC (rev 5091)
+++ vzctl/trunk/Makefile 2010-09-03 12:19:55 UTC (rev 5092)
@@ -1,7 +1,7 @@
RELEASE=1.6
SVER=3.0.24
-PACKAGERELEASE=1pve3
+PACKAGERELEASE=1pve4
ARCH=amd64
PACKAGE=vzctl
Modified: vzctl/trunk/debian/changelog
===================================================================
--- vzctl/trunk/debian/changelog 2010-09-03 10:50:12 UTC (rev 5091)
+++ vzctl/trunk/debian/changelog 2010-09-03 12:19:55 UTC (rev 5092)
@@ -1,3 +1,9 @@
+vzctl (3.0.24-1pve4) unstable; urgency=low
+
+ * fix bug in list2str (fix-list2str.patch)
+
+ -- Proxmox Support Team <support at proxmox.com> Fri, 03 Sep 2010 14:19:09 +0200
+
vzctl (3.0.24-1pve3) unstable; urgency=low
* update to latest version from git (Fri, 27 Aug 2010)
Added: vzctl/trunk/debian/patches/fix-list2str.patch
===================================================================
--- vzctl/trunk/debian/patches/fix-list2str.patch (rev 0)
+++ vzctl/trunk/debian/patches/fix-list2str.patch 2010-09-03 12:19:55 UTC (rev 5092)
@@ -0,0 +1,17 @@
+Index: src/src/lib/list.c
+===================================================================
+--- src.orig/src/lib/list.c 2010-09-03 14:16:53.000000000 +0200
++++ src/src/lib/list.c 2010-09-03 14:17:30.000000000 +0200
+@@ -49,8 +49,11 @@
+ if (c)
+ sp += sprintf(sp, "%c", c);
+
+- if (list_empty(head))
++ if (list_empty(head)) {
++ if (c)
++ sp += sprintf(sp, "%c", c);
+ return buf;
++ }
+
+ list_for_each(p, head, list) {
+ if (p->val == NULL)
Modified: vzctl/trunk/debian/patches/series
===================================================================
--- vzctl/trunk/debian/patches/series 2010-09-03 10:50:12 UTC (rev 5091)
+++ vzctl/trunk/debian/patches/series 2010-09-03 12:19:55 UTC (rev 5092)
@@ -1,3 +1,4 @@
initlog.patch
+fix-list2str.patch
fix-configure.patch
fix-init-script.patch
More information about the pve-devel
mailing list