Skip to content
Snippets Groups Projects
Commit b51e21c5 authored by Sebastian Hahn's avatar Sebastian Hahn
Browse files

Add a bufferevent note to startup log

This should help us easily spot if a tor was built with
--enable-bufferevent or not
parent cdbfc2a0
Branches
Tags
No related merge requests found
......@@ -2156,8 +2156,13 @@ tor_init(int argc, char *argv[])
}
quiet_level = quiet;
log(LOG_NOTICE, LD_GENERAL, "Tor v%s. This is experimental software. "
"Do not rely on it for strong anonymity. (Running on %s)",get_version(),
log(LOG_NOTICE, LD_GENERAL, "Tor v%s%s. This is experimental software. "
"Do not rely on it for strong anonymity. (Running on %s)", get_version(),
#ifdef USE_BUFFEREVENTS
" (with bufferevents)",
#else
"",
#endif
get_uname());
if (network_init()<0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment