fix obvious typo which breaks devpath->syspath

SVN revision: 53493
This commit is contained in:
Mike Blumenkrantz 2010-10-16 19:57:21 +00:00
parent bca689359d
commit 95bbf40398
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ eeze_udev_devpath_get_syspath(const char *devpath)
if (!en)
return NULL;
udev_enumerate_add_match_property(en, "DEVNAME", devpath);
udev_enumerate_add_match_property(en, "DEVPATH", devpath);
udev_enumerate_scan_devices(en);
devs = udev_enumerate_get_list_entry(en);
udev_list_entry_foreach(cur, devs)