summaryrefslogtreecommitdiffstats
path: root/crypto/rc4/rc4_skey.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/rc4/rc4_skey.c')
-rw-r--r--crypto/rc4/rc4_skey.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/crypto/rc4/rc4_skey.c b/crypto/rc4/rc4_skey.c
index 2e6cc2ddcb..9931a61008 100644
--- a/crypto/rc4/rc4_skey.c
+++ b/crypto/rc4/rc4_skey.c
@@ -61,17 +61,10 @@
const char *RC4_options(void)
{
-#ifdef RC4_INDEX
if (sizeof(RC4_INT) == 1)
- return ("rc4(idx,char)");
+ return ("rc4(char)");
else
- return ("rc4(idx,int)");
-#else
- if (sizeof(RC4_INT) == 1)
- return ("rc4(ptr,char)");
- else
- return ("rc4(ptr,int)");
-#endif
+ return ("rc4(int)");
}
/*-