gnunet-developers
[Top][All Lists]
Advanced

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

Re: [GNUnet-developers] Insertion speed


From: Niklas Höglund
Subject: Re: [GNUnet-developers] Insertion speed
Date: Sat, 10 Aug 2002 18:18:31 +0200
User-agent: Mutt/1.4i

On Tue, Aug 06, 2002 at 02:01:31PM +0200, Niklas Höglund wrote:
> Size of shared data:  4294967295k

This can be fixed with the following patch, that also avoids having
GNUnet prefix all data files with a backslash:

diff -u -r1.8 contentdatabase_directory.c
--- src/util/contentdatabase_directory.c        30 Jul 2002 02:58:49 -0000      
1.8
+++ src/util/contentdatabase_directory.c        10 Aug 2002 16:42:36 -0000
@@ -65,7 +65,7 @@
                "getDirectory: filename (tmp)");  
   tmp[0] = '\0';
   strcat(tmp, dir);
-  strcat(tmp,"\\");
+  strcat(tmp,"/");
   result = expandFileName(tmp);
   xfree(tmp, "getDirectory: filename (tmp)");
   return result;


-- 
                                                Niklas




reply via email to

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