bump version
[buildroot.git] / package / dmraid / dmraid.patch
blobfabd7c9026f5af5ff47137ddaaaad98eb8640d9b
1 --- 1.0.0.rc10/lib/device/scan.c.orig 2006-04-20 18:20:24.000000000 -0600
2 +++ 1.0.0.rc10/lib/device/scan.c 2006-04-20 18:21:00.000000000 -0600
3 @@ -66,7 +66,7 @@
4 static char *ret = NULL, *sysfs_mp;
6 if (!(sysfs_mp = find_sysfs_mp(lc)))
7 - LOG_ERR(lc, NULL, "finding sysfs mount point");
8 + { log_notice(lc, "finding sysfs mount point"); return NULL; }
10 if ((ret = dbg_malloc(strlen(sysfs_mp) + strlen(path) + 1)))
11 sprintf(ret, "%s%s", sysfs_mp, path);
12 @@ -308,7 +308,7 @@
13 } else {
14 sysfs = 0;
15 path = (char*) _PATH_DEV;
16 - log_print(lc, "carrying on with %s", path);
17 + log_notice(lc, "carrying on with %s", path);
20 if (!(d = opendir(path))) {