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:
4930f8b
)
PR: 1944
author
Dr. Stephen Henson
<steve@openssl.org>
Mon, 1 Jun 2009 12:18:21 +0000
(12:18 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Mon, 1 Jun 2009 12:18:21 +0000
(12:18 +0000)
Submitted by: Guenter <lists@gknw.net>
Reviewed by: steve@openssl.org
Fix gcc warning on mingw.
crypto/dso/dso_win32.c
patch
|
blob
|
history
diff --git
a/crypto/dso/dso_win32.c
b/crypto/dso/dso_win32.c
index fd3dd6a7fe3df9bd657f41ca8126e69502627b2a..e8b29ab1e1b6ed34d2894cfe8e1d3d81462f3d60 100644
(file)
--- a/
crypto/dso/dso_win32.c
+++ b/
crypto/dso/dso_win32.c
@@
-327,8
+327,8
@@
static struct file_st *win32_splitter(DSO *dso, const char *filename,
memset(result, 0, sizeof(struct file_st));
position = IN_DEVICE;
- if(
filename[0] == '\\' && filename[1] == '\\'
- ||
filename[0] == '/' && filename[1] == '/'
)
+ if(
(filename[0] == '\\' && filename[1] == '\\')
+ ||
(filename[0] == '/' && filename[1] == '/')
)
{
position = IN_NODE;
filename += 2;