From 342518fcbeabd87bafe7a81dec95c1123c6f87e8 Mon Sep 17 00:00:00 2001 From: barrybingo Date: Tue, 2 Apr 2019 12:52:25 +0100 Subject: [PATCH] Minorfixes (#2) Replace legacy function --- osslsigncode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osslsigncode.c b/osslsigncode.c index feb5d2d..8552cdb 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -1159,7 +1159,7 @@ static int verify_leaf_hash(X509 *leaf, const char *leafhash) /* decode the provided hash */ char *mdid = OPENSSL_strdup(leafhash); - char *hash = index(mdid, ':'); + char *hash = strchr(mdid, ':'); if (hash == NULL) { printf("Unable to parse -require-leaf-hash parameter: %s\n", leafhash); ret = 1;