From b6ee4e422803bc876364e2c63c4e84fd1dbf0703 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 24 Mar 2016 09:43:15 -0400 Subject: [PATCH] move return up into #ifdef. --- src/zm_rtsp_auth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_rtsp_auth.cpp b/src/zm_rtsp_auth.cpp index 10ecf3475..9521a81d1 100644 --- a/src/zm_rtsp_auth.cpp +++ b/src/zm_rtsp_auth.cpp @@ -201,8 +201,8 @@ std::string Authenticator::computeDigestResponse(std::string &method, std::strin return md5HexBuf; #else // HAVE_DECL_MD5 Error( "You need to build with gnutls or openssl installed to use digest authentication" ); -#endif // HAVE_DECL_MD5 return( 0 ); +#endif // HAVE_DECL_MD5 } void Authenticator::checkAuthResponse(std::string &response) {