summaryrefslogtreecommitdiff
path: root/apps/ca.c
diff options
context:
space:
mode:
authorlevitte <levitte>2003-09-09 14:48:35 +0000
committerlevitte <levitte>2003-09-09 14:48:35 +0000
commit74a8a697fca85ac792518131e198e24237b1a3e1 (patch)
treeebbef1574f15b4376e007d4a9fcea20b0f389585 /apps/ca.c
parent8f643a7b45f13d2a9e8eb903f850d9642cdeed82 (diff)
downloadopenssl-74a8a697fca85ac792518131e198e24237b1a3e1.tar.gz
Generalise the definition of strcasecmp() and strncasecmp() for
platforms that don't (necessarely) have it. In the case of VMS, this means moving a couple of functions from apps/ to crypto/ and make them general (although only used privately).
Diffstat (limited to 'apps/ca.c')
-rw-r--r--apps/ca.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 2c7e91aab..780868a9f 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -76,16 +76,6 @@
#include <openssl/ocsp.h>
#include <openssl/pem.h>
-#ifdef OPENSSL_SYS_WINDOWS
-#define strcasecmp _stricmp
-#else
-# ifdef NO_STRINGS_H
- int strcasecmp();
-# else
-# include <strings.h>
-# endif /* NO_STRINGS_H */
-#endif
-
#ifndef W_OK
# ifdef OPENSSL_SYS_VMS
# if defined(__DECC)