diff options
author | beck <> | 2014-04-15 17:46:17 +0000 |
---|---|---|
committer | beck <> | 2014-04-15 17:46:17 +0000 |
commit | c9414ed70ec89926c1041a64ee4b2f3ef36c90f6 (patch) | |
tree | c53c25a15cd89988cef641fa18324c5c6db28fed /src/lib/libssl/ssl_ciph.c | |
parent | 0cfe49dc6db41fd2d4f960b618ed41b11ffffc6a (diff) | |
download | openbsd-c9414ed70ec89926c1041a64ee4b2f3ef36c90f6.tar.gz openbsd-c9414ed70ec89926c1041a64ee4b2f3ef36c90f6.tar.bz2 openbsd-c9414ed70ec89926c1041a64ee4b2f3ef36c90f6.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 'src/lib/libssl/ssl_ciph.c')
-rw-r--r-- | src/lib/libssl/ssl_ciph.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_ciph.c b/src/lib/libssl/ssl_ciph.c index 0e24e0a5c6..ed2e78bdcc 100644 --- a/src/lib/libssl/ssl_ciph.c +++ b/src/lib/libssl/ssl_ciph.c | |||
@@ -1130,14 +1130,10 @@ const SSL_CIPHER **ca_list) | |||
1130 | ch = *l; | 1130 | ch = *l; |
1131 | buf = l; | 1131 | buf = l; |
1132 | buflen = 0; | 1132 | buflen = 0; |
1133 | #ifndef CHARSET_EBCDIC | ||
1134 | while (((ch >= 'A') && (ch <= 'Z')) || | 1133 | while (((ch >= 'A') && (ch <= 'Z')) || |
1135 | ((ch >= '0') && (ch <= '9')) || | 1134 | ((ch >= '0') && (ch <= '9')) || |
1136 | ((ch >= 'a') && (ch <= 'z')) || | 1135 | ((ch >= 'a') && (ch <= 'z')) || |
1137 | (ch == '-') || (ch == '.')) | 1136 | (ch == '-') || (ch == '.')) |
1138 | #else | ||
1139 | while (isalnum(ch) || (ch == '-') || (ch == '.')) | ||
1140 | #endif | ||
1141 | { | 1137 | { |
1142 | ch = *(++l); | 1138 | ch = *(++l); |
1143 | buflen++; | 1139 | buflen++; |