summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbcook <>2016-05-30 22:00:43 +0000
committerbcook <>2016-05-30 22:00:43 +0000
commitb5e812d88519f28137ac990c141e23bb5d90d6b5 (patch)
tree48c71fd9bea5104f59deebff07f2eed7c5c22e88
parenta35f44242c832a478373d4b9e7fc5c9119c07090 (diff)
downloadopenbsd-b5e812d88519f28137ac990c141e23bb5d90d6b5.tar.gz
openbsd-b5e812d88519f28137ac990c141e23bb5d90d6b5.tar.bz2
openbsd-b5e812d88519f28137ac990c141e23bb5d90d6b5.zip
Gix misleading indent pointed out by GCC 6.1.libressl-v2.4.0
ok beck@ jsing@
-rw-r--r--src/regress/lib/libcrypto/engine/enginetest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/engine/enginetest.c b/src/regress/lib/libcrypto/engine/enginetest.c
index 4451efb88d..bb2472a31d 100644
--- a/src/regress/lib/libcrypto/engine/enginetest.c
+++ b/src/regress/lib/libcrypto/engine/enginetest.c
@@ -208,11 +208,11 @@ int main(int argc, char *argv[])
208 printf("\nAdding stopped at %i, (%s,%s)\n", 208 printf("\nAdding stopped at %i, (%s,%s)\n",
209 loop, ENGINE_get_id(block[loop]), 209 loop, ENGINE_get_id(block[loop]),
210 ENGINE_get_name(block[loop])); 210 ENGINE_get_name(block[loop]));
211 goto cleanup_loop; 211 break;
212 } else 212 }
213 printf("."); fflush(stdout); 213 printf(".");
214 fflush(stdout);
214 } 215 }
215cleanup_loop:
216 printf("\nAbout to empty the engine-type list\n"); 216 printf("\nAbout to empty the engine-type list\n");
217 while ((ptr = ENGINE_get_first()) != NULL) { 217 while ((ptr = ENGINE_get_first()) != NULL) {
218 if (!ENGINE_remove(ptr)) { 218 if (!ENGINE_remove(ptr)) {