>From 4137adedc8d3448adee243cc408d304aad3bd768 Mon Sep 17 00:00:00 2001 From: Frank Dittrich Date: Tue, 26 Jun 2012 09:47:21 +0200 Subject: [PATCH] --list=format-all-details: fix indention for FMT_OMP flag description --- src/john.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/john.c b/src/john.c index 282036c..ebc1cb4 100644 --- a/src/john.c +++ b/src/john.c @@ -826,7 +826,7 @@ static void john_init(char *name, int argc, char **argv) printf(" Uses a bitslice implementation \t%s\n", (format->params.flags & FMT_BS) ? "yes" : "no"); printf(" The split() method unifies case\t%s\n", (format->params.flags & FMT_SPLIT_UNIFIES_CASE) ? "yes" : "no"); #ifdef _OPENMP - printf(" Parallelized with OpenMP \t%s\n", (format->params.flags & FMT_OMP) ? "yes" : "no"); + printf(" Parallelized with OpenMP \t%s\n", (format->params.flags & FMT_OMP) ? "yes" : "no"); #endif printf("Number of test cases for --test \t%d\n", ntests); printf("Algorithm name \t%s\n", format->params.algorithm_name); -- 1.7.7.6