Explorar el Código

be a little bit more helpful than "Error reading directory."
make a note to try to be more helpful still.


svn:r13776

Roger Dingledine hace 17 años
padre
commit
04efc74e18
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/common/util.c

+ 2 - 1
src/common/util.c

@@ -2108,7 +2108,8 @@ tor_listdir(const char *dirname)
     }
     if (!FindNextFile(handle, &findData)) {
       if (GetLastError() != ERROR_NO_MORE_FILES) {
-        log_warn(LD_FS, "Error reading directory.");
+        /* XXX021 can we say what the error is? */
+        log_warn(LD_FS, "Error reading directory '%s'.", dirname);
       }
       break;
     }