]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix use of virEventAddHandleImpl()
authorJiri Denemark <jdenemar@redhat.com>
Mon, 14 Dec 2009 15:09:01 +0000 (16:09 +0100)
committerDaniel Veillard <veillard@redhat.com>
Mon, 14 Dec 2009 15:09:01 +0000 (16:09 +0100)
src/node_device/node_device_udev.c was using a function available only
on the daemon code, fix this and use the function available globally

* src/node_device/node_device_udev.c: replace use of virEventAddHandleImpl
  by virEventAddHandle

src/node_device/node_device_udev.c

index 422a713435d37946f3b977d92ac6dbf22e9d3b3e..22c5f2b4e3dad74a5990f2c24707ec4f0c4809b5 100644 (file)
@@ -37,7 +37,7 @@
 #include "uuid.h"
 #include "util.h"
 #include "buf.h"
-#include "daemon/event.h"
+#include "event.h"
 
 #define VIR_FROM_THIS VIR_FROM_NODEDEV
 
@@ -1531,10 +1531,10 @@ static int udevDeviceMonitorStartup(int privileged ATTRIBUTE_UNUSED)
      * enumeration.  The alternative is to register the callback after
      * we enumerate, in which case we will fail to create any devices
      * that appear while the enumeration is taking place.  */
-    if (virEventAddHandleImpl(udev_monitor_get_fd(udev_monitor),
-                              VIR_EVENT_HANDLE_READABLE,
-                              udevEventHandleCallback,
-                              NULL, NULL) == -1) {
+    if (virEventAddHandle(udev_monitor_get_fd(udev_monitor),
+                          VIR_EVENT_HANDLE_READABLE,
+                          udevEventHandleCallback,
+                          NULL, NULL) == -1) {
         ret = -1;
         goto out;
     }