chiark / gitweb /
sd-dhcp: fix test of magic cookie
[elogind.git] / src / libsystemd-network / test-dhcp-option.c
index 92c58e0d58e5edebbbe418a474845c5ea2eda3da..7a0fac8d338a2f19357f07f978c2520272b89e7a 100644 (file)
@@ -100,9 +100,9 @@ static void test_message_init(void)
         magic = (uint8_t*)&message->magic;
 
         assert_se(magic[0] == 99);
-        assert_se(magic[1] = 130);
-        assert_se(magic[2] = 83);
-        assert_se(magic[3] = 99);
+        assert_se(magic[1] == 130);
+        assert_se(magic[2] == 83);
+        assert_se(magic[3] == 99);
 
         assert_se(dhcp_option_parse(message, len, NULL, NULL) >= 0);
 }