[daemon-fix] fixed querying about name information
[platform/upstream/dbus.git] / dbus / dbus-socket-set.c
index ddc4751..210d600 100644 (file)
@@ -31,6 +31,13 @@ _dbus_socket_set_new (int size_hint)
 {
   DBusSocketSet *ret;
 
+#ifdef DBUS_HAVE_LINUX_EPOLL
+  ret = _dbus_socket_set_epoll_new ();
+
+  if (ret != NULL)
+    return ret;
+#endif
+
   ret = _dbus_socket_set_poll_new (size_hint);
 
   if (ret != NULL)