Hi,
find below a simple patch against openssl-0.9.8k which kills a gcc
compiler warning about missing braces ...

--- openssl-0.9.8k.orig/crypto/dso/dso_win32.c  2006-01-15
18:28:35.000000000 +0100
+++ openssl-0.9.8k/crypto/dso/dso_win32.c       2009-05-24 01:51:09.000000000
+0200
@@ -327,8 +327,8 @@
        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;




______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to