chiark / gitweb /
util: fix misuse of memcmp
authorYuxuan Shui <yshuiv7@gmail.com>
Thu, 5 Dec 2013 14:30:04 +0000 (22:30 +0800)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 6 Dec 2013 03:49:02 +0000 (22:49 -0500)
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;