From: Nick Mathewson Date: Wed, 10 Nov 2004 14:29:18 +0000 (+0000) Subject: Clarify a warning about /.tor X-Git-Tag: debian-version-0.0.8+0.0.9pre5-2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c22b428bf3ff8b8cb898099c92994a9de82cb73;p=thirdparty%2Ftor.git Clarify a warning about /.tor svn:r2794 --- diff --git a/src/or/config.c b/src/or/config.c index ef773e1f46..cbc102b96d 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1905,7 +1905,7 @@ normalize_data_directory(or_options_t *options) { if (!options->DataDirectory && !strcmp(fn,"/.tor")) { /* If our homedir is /, we probably don't want to use it. */ /* XXXX Default to /var/lib/tor? */ - log_fn(LOG_WARN, "Defaulting to %s, which may not be what you want", fn); + log_fn(LOG_WARN, "Defaulting to 'DataDirectory %s', which may not be what you want", fn); } tor_free(options->DataDirectory); options->DataDirectory = fn;