From 2f702291484ccecba455b039bc4c04b4cf87e972 Mon Sep 17 00:00:00 2001 From: Heiko Hund Date: Fri, 13 May 2022 01:19:01 +0200 Subject: [PATCH] make %x destination unsigned The %x specifier requires for the argument to be an unsigned int. Signed-off-by: Heiko Hund Acked-by: Frank Lichtenheld Message-Id: <20220512231901.1077306-1-heiko@ist.eigentlich.net> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg24336.html Signed-off-by: Gert Doering --- src/openvpn/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/options.c b/src/openvpn/options.c index 750444fec..233c02e04 100644 --- a/src/openvpn/options.c +++ b/src/openvpn/options.c @@ -1142,7 +1142,7 @@ parse_hash_fingerprint(const char *str, int nbytes, int msglevel, struct gc_aren ALLOC_OBJ_CLEAR_GC(ret, struct verify_hash_list, gc); char term = 0; - int byte; + unsigned int byte; while (*cp && i < nbytes) { -- 2.47.2