aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-09-10 21:39:53 +0000
committerRoger Dingledine <arma@torproject.org>2004-09-10 21:39:53 +0000
commit8954cd91ce5055789077c5ae56484638de21ab0a (patch)
tree73fae0be5ea74d0e4587c870d902bb24beddeb64 /src/common
parenta885eea6098fb5db3944df66b9d2f0db3796be54 (diff)
downloadtor-8954cd91ce5055789077c5ae56484638de21ab0a.tar
tor-8954cd91ce5055789077c5ae56484638de21ab0a.tar.gz
LOG_ERR is for when we're going to exit
svn:r2348
Diffstat (limited to 'src/common')
-rw-r--r--src/common/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c
index c9b0fa110..8a3e528b9 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. */