From: Kay Sievers Date: Wed, 4 Mar 2009 22:32:16 +0000 (+0100) Subject: libudev: queue - use lstat() to check existence of symlink X-Git-Tag: 174~1135 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5d8cffad9020247c9ba81a9e0a9b9cee5c4a4d5;p=systemd libudev: queue - use lstat() to check existence of symlink --- diff --git a/configure.ac b/configure.ac index 5b2d9207..022c4cb0 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ test "$prefix" = NONE && test "$exec_prefix" = NONE && exec_prefix= dnl /* libudev version */ LIBUDEV_LT_CURRENT=0 -LIBUDEV_LT_REVISION=9 +LIBUDEV_LT_REVISION=10 LIBUDEV_LT_AGE=0 AC_SUBST(LIBUDEV_LT_CURRENT) AC_SUBST(LIBUDEV_LT_REVISION) diff --git a/udev/lib/libudev-queue.c b/udev/lib/libudev-queue.c index 51878dab..7ec22370 100644 --- a/udev/lib/libudev-queue.c +++ b/udev/lib/libudev-queue.c @@ -194,7 +194,7 @@ int udev_queue_get_seqnum_is_finished(struct udev_queue *udev_queue, unsigned lo } snprintf(filename, sizeof(filename), "%s/.udev/queue/%llu", udev_get_dev_path(udev_queue->udev), seqnum); - if (stat(filename, &statbuf) == 0) + if (lstat(filename, &statbuf) == 0) return 0; dbg(udev_queue->udev, "seqnum: %llu finished\n", seqnum); return 1;