summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@gmail.com>2011-06-05 21:27:53 +0200
committerGeorge Kadianakis <desnacked@gmail.com>2011-06-05 21:27:53 +0200
commit9eab601f10958ad75b3aef0015f32fc339609054 (patch)
treed2636a8140a3218bd2d93007bb8a98af4163906b /src/common
parente676db656da1c3911f0667faa4fd2396db1c9e8f (diff)
downloadtor-9eab601f10958ad75b3aef0015f32fc339609054.tar.gz
tor-9eab601f10958ad75b3aef0015f32fc339609054.zip
Add the heartbeat domain in log.c:domain_list[]
so that parse_log_domain() doesn't fail.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c
index abdce142ad..97400623e5 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -899,7 +899,7 @@ log_level_to_string(int level)
static const char *domain_list[] = {
"GENERAL", "CRYPTO", "NET", "CONFIG", "FS", "PROTOCOL", "MM",
"HTTP", "APP", "CONTROL", "CIRC", "REND", "BUG", "DIR", "DIRSERV",
- "OR", "EDGE", "ACCT", "HIST", "HANDSHAKE", NULL
+ "OR", "EDGE", "ACCT", "HIST", "HANDSHAKE", "HEARTBEAT", NULL
};
/** Return a bitmask for the log domain for which <b>domain</b> is the name,