Fix indent comment corruption issue
authorMatt Caswell <matt@openssl.org>
Wed, 21 Jan 2015 16:12:59 +0000 (16:12 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:27:47 +0000 (09:27 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bn/bn_lib.c
ssl/ssl.h

index 09c8313622f5759f345bcc2dd11311cff0df7ab0..7a8f8c1450177fcf2e2386f3d99a3f154f9ac760 100644 (file)
@@ -356,12 +356,12 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
                case 2: A[1]=B[1];
                case 1: A[0]=B[0];
                case 0:
+                       ;
                        /*
                         * workaround for ultrix cc: without 'case 0', the optimizer does
                         * the switch table by doing a=top&3; a--; goto jump_table[a];
                         * which fails for top== 0
                         */
-                       ;
                        }
                }
 
index 9fc93440594ae552392a236e5676b8f3e99cbdf9..4816abd908764c71e0689f1a06d48739081da389 100644 (file)
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -993,7 +993,8 @@ struct ssl_ctx_st
 
        /* Default values used when no per-SSL value is defined follow */
 
-       void (*info_callback)(const SSL *ssl,int type,int val); /* used if SSL's info_callback is NULL */
+       /* used if SSL's info_callback is NULL */
+       void (*info_callback)(const SSL *ssl,int type,int val);
 
        /* what we put in client cert requests */
        STACK_OF(X509_NAME) *client_CA;