From: Roger Dingledine Date: Fri, 10 Sep 2004 21:39:53 +0000 (+0000) Subject: LOG_ERR is for when we're going to exit X-Git-Tag: tor-0.0.9pre1~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8954cd91ce5055789077c5ae56484638de21ab0a;p=thirdparty%2Ftor.git LOG_ERR is for when we're going to exit svn:r2348 --- diff --git a/src/common/util.c b/src/common/util.c index c9b0fa1109..8a3e528b97 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1616,7 +1616,7 @@ char *expand_filename(const char *filename) const char *home = getenv("HOME"); char *result; if (!home) { - log_fn(LOG_ERR, "Couldn't find $HOME environment variable while expanding %s", filename); + log_fn(LOG_WARN, "Couldn't find $HOME environment variable while expanding %s", filename); return NULL; } /* minus two characters for ~/, plus one for /, plus one for NUL. */