diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-03-18 10:00:25 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:53:53 -0700 |
commit | 68c2c0b5b1dedfe0fd3346560999791efdf48c25 (patch) | |
tree | f3035296b6ac87605e048bd119b83d837d20aab1 /udev_libc_wrapper.c | |
parent | a5b9e2994a6d34cb169eaa0e2cf16d0a7c4f197a (diff) |
[PATCH] fix bad typo that prevents the GROUP to be applied
Thanks to Jim Gifford <maillist@jg555.com> for catching it.
Diffstat (limited to 'udev_libc_wrapper.c')
-rw-r--r-- | udev_libc_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_libc_wrapper.c b/udev_libc_wrapper.c index 4b39b6f476..16d90913cf 100644 --- a/udev_libc_wrapper.c +++ b/udev_libc_wrapper.c @@ -140,7 +140,7 @@ static unsigned long get_id_by_name(const char *uname, const char *dbfile) dbg("can't open '%s' as db file", dbfile); return 0; } - dbg("reading '%s' as db file", dbfile); + dbg("search '%s' in '%s'", uname, dbfile); /* loop through the whole file */ cur = 0; |