diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-06-24 08:04:42 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-06-24 08:04:42 +0000 |
commit | dcc0b2447ee35addf2688c07bf6a5f984d043344 (patch) | |
tree | fb483909f4ba75611b88391a452bd13379a70de4 /pkcs11-helper.c | |
parent | -r 1026:1032 (diff) | |
download | openvpn-dcc0b2447ee35addf2688c07bf6a5f984d043344.tar.xz |
Eliminated gcc 3.3.3 warnings on NetBSD
when ./configure --enable-strict is used.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1040 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'pkcs11-helper.c')
-rw-r--r-- | pkcs11-helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkcs11-helper.c b/pkcs11-helper.c index 99a67e2..fd8f7f1 100644 --- a/pkcs11-helper.c +++ b/pkcs11-helper.c @@ -6506,7 +6506,7 @@ _pkcs11h_locate_hexToBinary ( *p_target_size = 0; while (*p != '\0' && *p_target_size < target_max_size) { - if (isxdigit (*p)) { + if (isxdigit ((unsigned char)*p)) { buf[i%2] = *p; if ((i%2) == 1) { |