]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
* dbus/dbus-sysdeps-win.c (_dbus_full_duplex_pipe): fixed assertation.
authorRalf Habacker <ralf.habacker@freenet.de>
Thu, 24 May 2007 17:28:42 +0000 (17:28 +0000)
committerRalf Habacker <ralf.habacker@freenet.de>
Thu, 24 May 2007 17:28:42 +0000 (17:28 +0000)
ChangeLog
dbus/dbus-sysdeps-win.c

index 77a29e93d499e186e58865836a86c50663667825..82638f3da7cd187b2a1c7363e39477f1e360ad87 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-25  Ralf Habacker  <ralf.habacker@freenet.de>
+
+       * dbus/dbus-sysdeps-win.c (_dbus_full_duplex_pipe): fixed assertation.
+
 2007-05-24  Simon McVittie  <simon.mcvittie@collabora.co.uk>
 
        * bus/config-parser.c (test_service_dir_matches): fixed ordering for unix.
index f8c4dfd4fdd37baef87b234d5fb8dfd8720d0545..095fdd6f312187561b01ed86a1838cfb5315448a 100644 (file)
@@ -2057,8 +2057,7 @@ _dbus_full_duplex_pipe (int        *fd1,
   if (connect (socket1, (struct sockaddr  *)&saddr, len) != SOCKET_ERROR ||
       WSAGetLastError () != WSAEWOULDBLOCK)
     {
-      dbus_set_error_const (error, DBUS_ERROR_FAILED,
-                            "_dbus_full_duplex_pipe socketpair() emulation failed");
+      DBUS_SOCKET_SET_ERRNO ();
       goto out1;
     }