summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/ssl/ssl_ciph.c
diff options
context:
space:
mode:
authorbeck <beck@openbsd.org>2014-04-15 17:46:16 +0000
committerbeck <beck@openbsd.org>2014-04-15 17:46:16 +0000
commitb4148b700a1c8f291abcf64c42ac3229f9827ca7 (patch)
tree157ab6b25c416ae3585d10a00df3c301d6bc4d95 /lib/libssl/src/ssl/ssl_ciph.c
parent- get the spacing right for -e, -i, -n, and -s (diff)
downloadwireguard-openbsd-b4148b700a1c8f291abcf64c42ac3229f9827ca7.tar.xz
wireguard-openbsd-b4148b700a1c8f291abcf64c42ac3229f9827ca7.zip
Send the rotIBM stream cipher (ebcdic) to Valhalla to party for eternity
with the bearded ones... some API's that nobody should be using will dissapear with this commit.
Diffstat (limited to 'lib/libssl/src/ssl/ssl_ciph.c')
-rw-r--r--lib/libssl/src/ssl/ssl_ciph.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libssl/src/ssl/ssl_ciph.c b/lib/libssl/src/ssl/ssl_ciph.c
index 0e24e0a5c69..ed2e78bdcc9 100644
--- a/lib/libssl/src/ssl/ssl_ciph.c
+++ b/lib/libssl/src/ssl/ssl_ciph.c
@@ -1130,14 +1130,10 @@ const SSL_CIPHER **ca_list)
ch = *l;
buf = l;
buflen = 0;
-#ifndef CHARSET_EBCDIC
while (((ch >= 'A') && (ch <= 'Z')) ||
((ch >= '0') && (ch <= '9')) ||
((ch >= 'a') && (ch <= 'z')) ||
(ch == '-') || (ch == '.'))
-#else
- while (isalnum(ch) || (ch == '-') || (ch == '.'))
-#endif
{
ch = *(++l);
buflen++;