projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
954f3c3
)
Remove VMS_strcasecmp() from apps.c, it's not used any more. And
author
Richard Levitte
<levitte@openssl.org>
Tue, 11 Jan 2005 06:53:30 +0000
(06:53 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Tue, 11 Jan 2005 06:53:30 +0000
(06:53 +0000)
besides, the implementation is bogus.
apps/apps.c
patch
|
blob
|
history
diff --git
a/apps/apps.c
b/apps/apps.c
index 47c1a22b5dd79102df7f3b76861dd13e09f3fa37..9157cdfcdca9186472f2a1bd585ecf2888e90792 100644
(file)
--- a/
apps/apps.c
+++ b/
apps/apps.c
@@
-330,22
+330,6
@@
void program_name(char *in, char *out, int size)
#endif
#endif
-#ifdef OPENSSL_SYS_VMS
-int VMS_strcasecmp(const char *str1, const char *str2)
- {
- while (*str1 && *str2)
- {
- int res = toupper(*str1) - toupper(*str2);
- if (res) return res < 0 ? -1 : 1;
- }
- if (*str1)
- return 1;
- if (*str2)
- return -1;
- return 0;
- }
-#endif
-
int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
{
int num,len,i;