summaryrefslogtreecommitdiff
path: root/lib/iolog/hostcheck.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/iolog/hostcheck.c')
-rw-r--r--lib/iolog/hostcheck.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/iolog/hostcheck.c b/lib/iolog/hostcheck.c
index fc664cf71..d23514e8b 100644
--- a/lib/iolog/hostcheck.c
+++ b/lib/iolog/hostcheck.c
@@ -19,7 +19,7 @@
* PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
*/
-#include "config.h"
+#include <config.h>
#if defined(HAVE_OPENSSL)
# if defined(HAVE_WOLFSSL)
@@ -188,7 +188,7 @@ matches_common_name(const char *hostname, const char *ipaddr, const X509 *cert,
{
X509_NAME_ENTRY *common_name_entry = NULL;
ASN1_STRING *common_name_asn1 = NULL;
- int common_name_loc = -1;
+ int common_name_loc;
debug_decl(matches_common_name, SUDO_DEBUG_UTIL);
/* Find the position of the CN field in the Subject field of the certificate */
@@ -268,7 +268,7 @@ matches_subject_alternative_name(const char *hostname, const char *ipaddr, const
{
HostnameValidationResult result = MatchNotFound;
int i;
- int san_names_nb = -1;
+ int san_names_nb;
STACK_OF(GENERAL_NAME) *san_names = NULL;
debug_decl(matches_subject_alternative_name, SUDO_DEBUG_UTIL);