[systemd-commits] 2 commits - configure.ac src/swap.c

Lennart Poettering lennart at kemper.freedesktop.org
Wed Jun 2 09:55:21 PDT 2010


 configure.ac |    3 ++-
 src/swap.c   |    2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 2c7c61442e6b46571b1f53db05ef7a23227bebe2
Author: Christian Ruppert <idl0r at qasl.de>
Date:   Wed Jun 2 18:54:50 2010 +0200

    swap: Fix uninitialized variable

diff --git a/src/swap.c b/src/swap.c
index 2c7e492..c35a8e7 100644
--- a/src/swap.c
+++ b/src/swap.c
@@ -246,7 +246,7 @@ int swap_add_one(
                 bool from_proc_swaps) {
         Unit *u = NULL;
         char *e = NULL, *w = NULL;
-        bool delete;
+        bool delete = false;
         int r;
         SwapParameters *p;
 
commit a45a909fbbe11ad8c75cda5639d875476ac65453
Author: Christian Ruppert <idl0r at qasl.de>
Date:   Wed Jun 2 18:53:19 2010 +0200

    build-sys: call AC_OUTPUT without any arguments

diff --git a/configure.ac b/configure.ac
index 16f1bcd..af20151 100644
--- a/configure.ac
+++ b/configure.ac
@@ -275,7 +275,8 @@ AC_ARG_WITH([rootdir],
         [with_rootdir=${ac_default_prefix}])
 AC_SUBST([rootdir], [$with_rootdir])
 
-AC_OUTPUT([Makefile])
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
 
 echo "
         $PACKAGE_NAME $VERSION


More information about the systemd-commits mailing list