diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2013-01-04 19:11:01 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-01-07 12:20:54 -0500 |
commit | 5f1d6a94ca9b9d4235c2ec8d8f3236f3b8b5fee1 (patch) | |
tree | e72ed88d089b82cc676159b6f57d51f7f00af2cd /src/udev | |
parent | c18029abe93784928a4aab040f5f351c8c6abac3 (diff) |
The only functional changes in systemd-udev-196
As far as I can tell these are the only functional changes between the current
eudev codebase and the codebase of systemd-196, in relation to udev hwdb code.
There are some code style differences, and a number of error-trap-and-log
lines that are not present, but that's about it
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev')
-rw-r--r-- | src/udev/udev-builtin-hwdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-builtin-hwdb.c b/src/udev/udev-builtin-hwdb.c index 3004af0e1c..0b35d799fe 100644 --- a/src/udev/udev-builtin-hwdb.c +++ b/src/udev/udev-builtin-hwdb.c @@ -34,7 +34,7 @@ int udev_builtin_hwdb_lookup(struct udev_device *dev, const char *modalias, bool int n = 0; if (!hwdb) - return EXIT_FAILURE; + return -ENOENT; udev_list_entry_foreach(entry, udev_hwdb_get_properties_list_entry(hwdb, modalias, 0)) { if (udev_builtin_add_property(dev, test, |