[PATCH] operate on the rules in the order they are in the config file (within the rule type)

This commit is contained in:
greg@kroah.com 2003-12-02 17:45:19 -08:00 committed by Greg KH
parent 7f2ea6a382
commit 8cf7ebe8cd
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}