summaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2000-05-29 02:42:57 +0000
committerGeoff Thorpe <geoff@openssl.org>2000-05-29 02:42:57 +0000
commite9e6b88b3595bda645d7942102111403805ce4a4 (patch)
tree5ff292ed30a8936c9ad271a8d2281bd9410dfc6b /crypto/dso
parent360370d9530d552078a453f7333faeab0039268f (diff)
oops.
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dso/dso_win32.c b/crypto/dso/dso_win32.c
index c495840bd2..cc602c7cb6 100644
--- a/crypto/dso/dso_win32.c
+++ b/crypto/dso/dso_win32.c
@@ -119,8 +119,8 @@ static int win32_load(DSO *dso, const char *filename)
len = strlen(filename);
if((dso->flags & DSO_FLAG_NAME_TRANSLATION) &&
(len + 4 < DSO_MAX_TRANSLATED_SIZE) &&
- (strstr(filename, "/") == NULL)
- (strstr(filename, "\\") == NULL)
+ (strstr(filename, "/") == NULL) &&
+ (strstr(filename, "\\") == NULL) &&
(strstr(filename, ":") == NULL))
{
sprintf(translated, "%s.dll", filename);