chiark / gitweb /
[PATCH] operate on the rules in the order they are in the config file (within the...
[elogind.git] / namedev.c
index d45a827083dd59f46d413a1b3a09732c26d9a976..0abd4b8041192d4f9148655be5ed8c6e6d9ecd6d 100644 (file)
--- a/namedev.c
+++ b/namedev.c
@@ -145,7 +145,7 @@ static int add_dev(struct config_device *new_dev)
        if (!tmp_dev)
                return -ENOMEM;
        memcpy(tmp_dev, new_dev, sizeof(*tmp_dev));
-       list_add(&tmp_dev->node, &config_device_list);
+       list_add_tail(&tmp_dev->node, &config_device_list);
        //dump_dev(tmp_dev);
        return 0;
 }