move return up into #ifdef.

This commit is contained in:
Isaac Connor 2016-03-24 09:43:15 -04:00
parent 0c32ae61ef
commit b6ee4e4228
1 changed files with 1 additions and 1 deletions

View File

@ -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) {