summaryrefslogtreecommitdiff
path: root/udev_rules.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-05-26 17:11:13 +0200
committerKay Sievers <kay.sievers@vrfy.org>2008-05-26 17:11:13 +0200
commit941d40a0747a4cbbb306ba597ff02bbbbb49df96 (patch)
tree5a670f886dc34f36aadfa640aeea2dd554bdf87b /udev_rules.c
parent2e6a862a4d0054e5370074803a6bac06aa0569b3 (diff)
rules: persistent net - handle "locally administered" ibmveth MAC addresses
Diffstat (limited to 'udev_rules.c')
-rw-r--r--udev_rules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_rules.c b/udev_rules.c
index a102e2da50..ea850a84c3 100644
--- a/udev_rules.c
+++ b/udev_rules.c
@@ -1101,7 +1101,7 @@ static int match_rule(struct udevice *udev, struct udev_rule *rule)
attr_subst_subdir(filename, sizeof(filename));
match = (stat(filename, &statbuf) == 0);
- info("'%s' %s", filename, match ? "exists" : "does not exist\n");
+ info("'%s' %s", filename, match ? "exists\n" : "does not exist\n");
if (match && rule->test_mode_mask > 0) {
match = ((statbuf.st_mode & rule->test_mode_mask) > 0);
info("'%s' has mode=%#o and %s %#o\n", filename, statbuf.st_mode,