ec/ecp_nistz256.c: harmonize with latest indent script.
[oweals/openssl.git] / crypto / bn / bn_lib.c
index 2f6ab6170f7ab54e8b5e6ae08098f2244b9ab185..e664fa6df204ca0adaea53a0febba7810eeec9b6 100644 (file)
@@ -265,7 +265,7 @@ void BN_free(BIGNUM *a)
                OPENSSL_free(a);
        else
                {
-#ifdef OPENSSL_USE_DEPRECATED
+#ifndef OPENSSL_NO_DEPRECATED
                a->flags|=BN_FLG_FREE;
 #endif
                a->d = NULL;
@@ -356,10 +356,13 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
                case 3: A[2]=B[2];
                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 */
+               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
+                        */
                        }
                }