diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-04-16 12:48:56 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-04-16 22:03:09 -0400 |
commit | 739a52592bdb771d7ba4e40b6c9df84ea539f7fd (patch) | |
tree | 5cc08afbcb791b2fe253845636ad6e06db761f6a /src/common | |
parent | 5aaac938a94fc0b5d7dc63cac92e78d3125f08c8 (diff) | |
download | tor-739a52592bdb771d7ba4e40b6c9df84ea539f7fd.tar.gz tor-739a52592bdb771d7ba4e40b6c9df84ea539f7fd.zip |
Upgrade warning about missing interned string for sandbox
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/sandbox.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 8cbcd04fa6..73966de6e2 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -883,7 +883,8 @@ sandbox_intern_string(const char *str) } } - log_info(LD_GENERAL, "(Sandbox) Parameter %s not found", str); + if (sandbox_active) + log_warn(LD_BUG, "No interned sandbox parameter found for %s", str); return str; } |