From: Dave Reisner Date: Mon, 2 Jul 2012 01:09:18 +0000 (+0200) Subject: udevd: fix bogus mkdir invocation X-Git-Tag: v186~28 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=ddbe6850b2ae490ab359a050b190cf96e1559cd7;hp=b80680eda9e615711414b7efa2d81e4ac1496b6a udevd: fix bogus mkdir invocation The filename parameter passed to mkdir can't contain anything but a garbage value at this point. This was meant to be the full pathname to the new udev DB, as the mkdir_parents() call before it won't create the trailing child directory. [replace mkdir_parents() + mkdir() with mkdir_p() -- kay] --- diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 1d6b23087..a5478a754 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -899,8 +899,7 @@ static int convert_db(struct udev *udev) return 0; /* make sure we do not get here again */ - mkdir_parents("/run/udev/data", 0755); - mkdir(filename, 0755); + mkdir_p("/run/udev/data", 0755); /* old database */ util_strscpyl(filename, sizeof(filename), "/dev/.udev/db", NULL);