Fix socket implementation on Windows.
authorMarcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Thu, 3 Feb 2011 11:38:28 +0000 (12:38 +0100)
committerMarcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Thu, 3 Feb 2011 11:38:28 +0000 (12:38 +0100)
2011-02-03  Marcus Brinkmann  <marcus@g10code.com>

        * w32-io.c (_gpgme_io_socket): Return fd, not res.

src/ChangeLog
src/w32-io.c

index 73a62fe36249915dcb0e25ababe8a00842412b70..4afcdf984492071f1ffdf357421f06b0b04dbf37 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-03  Marcus Brinkmann  <marcus@g10code.com>
+
+       * w32-io.c (_gpgme_io_socket): Return fd, not res.
+
 2011-02-02  Marcus Brinkmann  <mb@g10code.com>
 
        * assuan-support.c (my_socket, my_connect): New functions.
index 10e0dade187d600dc7bd069bd91776f057fd32e0..56a05c4ba693e9e27100239430863daf95213c36 100644 (file)
@@ -2035,7 +2035,7 @@ _gpgme_io_socket (int domain, int type, int proto)
 
   TRACE_SUC2 ("socket=0x%x (0x%x)", fd, fd_table[fd].socket);
   
-  return res;
+  return fd;
 }