diff options
author | greg@kroah.com <greg@kroah.com> | 2003-12-02 17:45:19 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:04 -0700 |
commit | 8cf7ebe8cdf9cb39ca9a60e23c735ab62cd15928 (patch) | |
tree | bac57deb5d1a82073a0c6942f800c21680323285 /namedev.c | |
parent | 7f2ea6a38223b02d38406baf1843f4ee1349abcf (diff) |
[PATCH] operate on the rules in the order they are in the config file (within the rule type)
Diffstat (limited to 'namedev.c')
-rw-r--r-- | namedev.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |