gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r4846 - GNUnet/src/applications/dht/module


From: gnunet
Subject: [GNUnet-SVN] r4846 - GNUnet/src/applications/dht/module
Date: Mon, 28 May 2007 20:06:26 -0600 (MDT)

Author: grothoff
Date: 2007-05-28 20:06:26 -0600 (Mon, 28 May 2007)
New Revision: 4846

Modified:
   GNUnet/src/applications/dht/module/cs.c
Log:
fx

Modified: GNUnet/src/applications/dht/module/cs.c
===================================================================
--- GNUnet/src/applications/dht/module/cs.c     2007-05-29 02:02:49 UTC (rev 
4845)
+++ GNUnet/src/applications/dht/module/cs.c     2007-05-29 02:06:26 UTC (rev 
4846)
@@ -202,18 +202,18 @@
  */
 static void csClientExit(struct ClientHandle * client) {
   unsigned int i;
-  DHT_CLIENT_GET_RECORD * gr;
+  struct DHT_GET_RECORD * gr;
 
   MUTEX_LOCK(lock);
   for (i=0;i<getRecordsSize;i++) {
     if (getRecords[i]->client == client) {
-      gr = getRecords[i];
+      gr = getRecords[i]->get_record;
       getRecords[i] = getRecords[getRecordsSize-1];
       GROW(getRecords,
           getRecordsSize,
           getRecordsSize-1);
       MUTEX_UNLOCK(lock);
-      dhtAPI->get_stop(gr->get_record);
+      dhtAPI->get_stop(gr);
       MUTEX_LOCK(lock);
     }
   }





reply via email to

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