chiark / gitweb /
util: fix misuse of memcmp
[elogind.git] / src / shared / util.c
index efd3468fb6695c6892d255329365ad5e66a5874d..c71293106f228910d52323957b78e1baa9cbaf4b 100644 (file)
@@ -5919,7 +5919,7 @@ int shall_restore_state(void) {
                 return 1;
 
         FOREACH_WORD_QUOTED(w, l, line, state)
-                if (l == 23 && memcmp(w, "systemd.restore_state=0", 23))
+                if (l == 23 && strneq(w, "systemd.restore_state=0", 23))
                         return 0;
 
         return 1;