Acked-By: Frank Lichtenheld <fr...@lichtenheld.com>

Trivial and looks correct to me according to the
man sscanf.

On Fri, May 13, 2022 at 01:19:01AM +0200, Heiko Hund wrote:
> The %x specifier requires for the argument to be an unsigned int.
> 
> Signed-off-by: Heiko Hund <he...@ist.eigentlich.net>
> ---
>  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 9ff384d0..3dbd3fab 100644
> --- a/src/openvpn/options.c
> +++ b/src/openvpn/options.c
> @@ -1104,7 +1104,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.32.0


_______________________________________________
Openvpn-devel mailing list
Openvpn-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Reply via email to