gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r23155 - gnunet-gtk/src/lib


From: gnunet
Subject: [GNUnet-SVN] r23155 - gnunet-gtk/src/lib
Date: Tue, 7 Aug 2012 19:46:44 +0200

Author: LRN
Date: 2012-08-07 19:46:44 +0200 (Tue, 07 Aug 2012)
New Revision: 23155

Modified:
   gnunet-gtk/src/lib/eventloop.c
Log:
Fix type enum

Modified: gnunet-gtk/src/lib/eventloop.c
===================================================================
--- gnunet-gtk/src/lib/eventloop.c      2012-08-07 16:30:55 UTC (rev 23154)
+++ gnunet-gtk/src/lib/eventloop.c      2012-08-07 17:46:44 UTC (rev 23155)
@@ -428,7 +428,7 @@
       {
         struct GNUNET_DISK_FileHandle *fh =
             GNUNET_CONTAINER_slist_get (&t, NULL);
-        if (fh->type == GNUNET_PIPE)
+        if (fh->type == GNUNET_DISK_HANLDE_TYPE_PIPE)
         {
           if (!ReadFile (fh->h, NULL, 0, NULL, fh->oOverlapRead))
           {
@@ -501,7 +501,7 @@
 
         DWORD dwBytes;
 
-        if (fh->type == GNUNET_PIPE)
+        if (fh->type == GNUNET_DISK_HANLDE_TYPE_PIPE)
         {
           if (!PeekNamedPipe (fh->h, NULL, 0, NULL, &dwBytes, NULL))
           {
@@ -770,7 +770,7 @@
     {
       struct GNUNET_DISK_FileHandle *fh = GNUNET_CONTAINER_slist_get (&t, 
NULL);
 
-      if (fh->type == GNUNET_PIPE)
+      if (fh->type == GNUNET_DISK_HANLDE_TYPE_PIPE)
         CancelIo (fh->h);
     }
     GNUNET_NETWORK_fdset_zero (rfds);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]