chiark / gitweb /
util: don't AND cx with cx
authorLennart Poettering <lennart@poettering.net>
Sat, 30 Apr 2011 02:06:13 +0000 (04:06 +0200)
committerLennart Poettering <lennart@poettering.net>
Sat, 30 Apr 2011 02:07:28 +0000 (04:07 +0200)
TODO
src/util.c

diff --git a/TODO b/TODO
index 4ba66efec326a9ccd572ff6a3291addfdc550226..8d03d950c0643096c1481bae2b5b71c66f1361de 100644 (file)
--- a/TODO
+++ b/TODO
@@ -37,6 +37,11 @@ Features:
 
 * plymouth.enable=0
 
+* include /usr/local/lib/tmpfiles.d in tmpfiles tool as search path
+  (and prefix/lib, in case it isn't one of the listed ones)
+
+* POSIX mqueue support in .socket units
+
 * introduce dbus calls for enabling/disabling a service
 
 * support notifications for services being enabled/disabled
index b337778d0ef96524447b4a3231588b1371a734b4..9b43c21d08456698770805c8bf1701f60b2730f2 100644 (file)
@@ -4011,7 +4011,7 @@ int detect_vm(const char **id) {
                 : "0" (eax)
         );
 
-        hypervisor = !!(ecx & ecx & 0x80000000U);
+        hypervisor = !!(ecx & 0x80000000U);
 
         if (hypervisor) {