diff options
author | 2014-04-15 17:46:16 +0000 | |
---|---|---|
committer | 2014-04-15 17:46:16 +0000 | |
commit | b4148b700a1c8f291abcf64c42ac3229f9827ca7 (patch) | |
tree | 157ab6b25c416ae3585d10a00df3c301d6bc4d95 /lib/libssl/src/ssl/ssl_ciph.c | |
parent | - get the spacing right for -e, -i, -n, and -s (diff) | |
download | wireguard-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.c | 4 |
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++; |