]> git.marmaro.de Git - mmh/blobdiff - uip/flist.c
Wrap local part (username) of address with double quotes if needed.
[mmh] / uip / flist.c
index d46f7bacffbdc2cc55127adb280271106fb245e3..8d8b92e1750dd60fb0b0ebb04a791b6fc962b48f 100644 (file)
@@ -413,6 +413,12 @@ BuildFolderListRecurse(char *dirName, struct stat *s, int searchdepth)
      * stat them.  But that shouldn't generally be a problem.
      */
     nlinks = s->st_nlink;
+    if (nlinks == 1) {
+      /* Disable the optimization under conditions where st_nlink
+         is set to 1.  That happens on Cygwin, for example:
+         http://cygwin.com/ml/cygwin-apps/2008-08/msg00264.html */
+      nlinks = INT_MAX;
+    }
 
     if (!(dir = opendir(dirName)))
        adios(dirName, "can't open directory");