gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r4815 - GNUnet/src/util/disk


From: gnunet
Subject: [GNUnet-SVN] r4815 - GNUnet/src/util/disk
Date: Sun, 27 May 2007 19:53:20 -0600 (MDT)

Author: grothoff
Date: 2007-05-27 19:53:20 -0600 (Sun, 27 May 2007)
New Revision: 4815

Modified:
   GNUnet/src/util/disk/storage.c
Log:
include hidden files in scan

Modified: GNUnet/src/util/disk/storage.c
===================================================================
--- GNUnet/src/util/disk/storage.c      2007-05-27 23:00:38 UTC (rev 4814)
+++ GNUnet/src/util/disk/storage.c      2007-05-28 01:53:20 UTC (rev 4815)
@@ -530,7 +530,8 @@
     return SYSERR;
   }
   while ((finfo = readdir(dinfo)) != NULL) {
-    if (finfo->d_name[0] == '.')
+    if ( (0 == strcmp(finfo->d_name, ".")) ||
+        (0 == strcmp(finfo->d_name, "..")) )    
       continue;
     if (callback != NULL) {
       if (OK != callback(finfo->d_name,





reply via email to

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