chiark / gitweb /
build-sys: re-add old symbols for abi compat
[elogind.git] / src / libudev / libudev-queue.c
index d4334b440dacd706cf3a4df0761b1aa12fdaa1d1..ae0b415e368d9f6a31894e7a75018f028935d289 100644 (file)
@@ -245,7 +245,7 @@ _public_ int udev_queue_get_fd(struct udev_queue *udev_queue) {
         if (fd < 0)
                 return -errno;
 
-        r = inotify_add_watch(fd, "/run/udev/queue" , IN_DELETE);
+        r = inotify_add_watch(fd, "/run/udev" , IN_DELETE);
         if (r < 0) {
                 r = -errno;
                 close(fd);
@@ -268,3 +268,6 @@ _public_ int udev_queue_flush(struct udev_queue *udev_queue) {
 
         return flush_fd(udev_queue->fd);
 }
+
+__asm__(".symver udev_queue_flush,udev_queue_flush@LIBUDEV_183");
+__asm__(".symver udev_queue_get_fd,udev_queue_get_fd@LIBUDEV_183");