From: Kay Sievers Date: Tue, 25 Sep 2007 11:45:49 +0000 (+0200) Subject: fix debug output string X-Git-Tag: 174~1810 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=d438c80e57b1cc98540399f817eda7fc2568cc72 fix debug output string --- diff --git a/udev_sysfs.c b/udev_sysfs.c index d5b04c310..e8909f94f 100644 --- a/udev_sysfs.c +++ b/udev_sysfs.c @@ -415,7 +415,7 @@ char *sysfs_attr_get_value(const char *devpath, const char *attr_name) /* read attribute value */ fd = open(path_full, O_RDONLY); if (fd < 0) { - dbg("attribute '%s' does not exist", path_full); + dbg("attribute '%s' can not be opened", path_full); goto out; } size = read(fd, value, sizeof(value));