From: Kay Sievers Date: Fri, 21 Nov 2008 23:34:42 +0000 (+0100) Subject: update NEWS TODO X-Git-Tag: 174~1289 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=6733f60178cc67d5064583d433335ce8fb25eae1 update NEWS TODO --- diff --git a/NEWS b/NEWS index 670b62475..940bfa614 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ udev 134 ======== +Bugfixes. + +The group "video" is part of the default rules now. udev 133 ======== diff --git a/TODO b/TODO index c06451dd6..3fd49ac5d 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,8 @@ + o switch device mapper rules to: + dmsetup info -c --nameprefixes --unquoted --rows --noheadings \ + -o name,uuid,suspended,readonly,major,minor,open,tables_loaded + o implement path_id with libudev o convert firmware.sh to C o add DVB variables to kernel (patch merged in v4l tree), drop the shell script rule diff --git a/configure.ac b/configure.ac index 0ccd8d560..cbd760edb 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ AC_PROG_LIBTOOL dnl /* libudev version */ LIBUDEV_LT_CURRENT=0 -LIBUDEV_LT_REVISION=5 +LIBUDEV_LT_REVISION=6 LIBUDEV_LT_AGE=0 AC_SUBST(LIBUDEV_LT_CURRENT) AC_SUBST(LIBUDEV_LT_REVISION) diff --git a/extras/volume_id/lib/volume_id.c b/extras/volume_id/lib/volume_id.c index a93ade642..8bbbc38c3 100644 --- a/extras/volume_id/lib/volume_id.c +++ b/extras/volume_id/lib/volume_id.c @@ -446,7 +446,7 @@ int volume_id_probe_filesystem(struct volume_id *id, uint64_t off, uint64_t size info("signature '%s' %i detected\n", id->type, i); if (id->force_unique_result) force_unique_result = 1; - if (found && force_unique_result) { + if (found > 0 && force_unique_result) { info("conflicting signatures found, skip results\n"); return -1; }