indent has problems with comments that are on the right hand side of a line.
[openssl.git] / crypto / bio / bss_file.c
index 962b4068eaf1362b501bd7c3cda24d9e29a1e350..01df9702d6f76f8c91dda87112a2a12ff319a226 100644 (file)
@@ -153,9 +153,14 @@ BIO *BIO_new_file(const char *filename, const char *mode)
                                        wmode,sizeof(wmode)/sizeof(wmode[0])) &&
                    (file=_wfopen(wfilename,wmode))==NULL &&
                    (errno==ENOENT || errno==EBADF)
-                  )    /* UTF-8 decode succeeded, but no file, filename
-                        * could still have been locale-ized... */
+                  )
+                       {
+                       /*
+                        * UTF-8 decode succeeded, but no file, filename
+                        * could still have been locale-ized...
+                        */
                        file = fopen(filename,mode);
+                       }
                }
        else if (GetLastError()==ERROR_NO_UNICODE_TRANSLATION)
                {