From 8cf7ebe8cdf9cb39ca9a60e23c735ab62cd15928 Mon Sep 17 00:00:00 2001 From: "greg@kroah.com" Date: Tue, 2 Dec 2003 17:45:19 -0800 Subject: [PATCH] [PATCH] operate on the rules in the order they are in the config file (within the rule type) --- namedev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/namedev.c b/namedev.c index d45a827083..0abd4b8041 100644 --- 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; }