From a470dda4e60a13d795b1ce6e8ee265ca7f86e20b Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Sun, 18 Jan 2015 05:26:43 -0800 Subject: [PATCH] Fix Journal::Stream::active to return the correct value --- src/beast/beast/utility/Journal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beast/beast/utility/Journal.h b/src/beast/beast/utility/Journal.h index c0782d3602..0e6a7aeb31 100644 --- a/src/beast/beast/utility/Journal.h +++ b/src/beast/beast/utility/Journal.h @@ -179,7 +179,7 @@ public: explicit operator bool() const { - return ! m_disabled; + return active(); } /** @} */