Explorar el Código

fix unix build: CONFDIR, not CONF_DIR

svn:r2267
Nick Mathewson hace 21 años
padre
commit
fffb4dbb8b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/or/config.c

+ 1 - 1
src/or/config.c

@@ -593,7 +593,7 @@ static char *get_default_conf_file(void)
   strlcat(path,"\\tor\\torrc",MAX_PATH);
   return path;
 #else
-  return tor_strdup(CONF_DIR "/torrc");
+  return tor_strdup(CONFDIR "/torrc");
 #endif
 }