diff options
author | George Kadianakis <desnacked@gmail.com> | 2011-06-05 21:27:53 +0200 |
---|---|---|
committer | George Kadianakis <desnacked@gmail.com> | 2011-06-05 21:27:53 +0200 |
commit | 9eab601f10958ad75b3aef0015f32fc339609054 (patch) | |
tree | d2636a8140a3218bd2d93007bb8a98af4163906b /src/common | |
parent | e676db656da1c3911f0667faa4fd2396db1c9e8f (diff) | |
download | tor-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.c | 2 |
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, |