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:20:08 +0000 (09:20 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bn/bn_lib.c
ssl/ssl.h

index 133fbb5a57d9ab90a482ea8470d213d856cba10a..e664fa6df204ca0adaea53a0febba7810eeec9b6 100644 (file)
@@ -357,12 +357,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 28e9df637001b19b7f84ea0b774e7aa0ca3219b3..d7dc2fabd3e9037c013e3d53ee2c89bf11159b79 100644 (file)
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -972,7 +972,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;