>From d2b25e7d804666147d91f08d8a6e8ab108d073bb Mon Sep 17 00:00:00 2001 From: Frank Dittrich Date: Mon, 25 Jun 2012 19:07:40 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20--list=3D=3F=20output=20(new-line/trailing=20?= =?UTF-8?q?space)?= --- src/john.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/john.c b/src/john.c index 8e3ce71..66e2671 100644 --- a/src/john.c +++ b/src/john.c @@ -571,9 +571,9 @@ static void john_init(char *name, int argc, char **argv) if (options.listconf && !strcasecmp(options.listconf, "?")) { - puts("subformats, inc-modes, rules, externals, ext-filters, ext-filters-only, "); - puts("ext-modes, build-info, hidden-options, encodings, formats, format-details, "); - puts("format-all-details, "); + puts("subformats, inc-modes, rules, externals, ext-filters, ext-filters-only,"); + puts("ext-modes, build-info, hidden-options, encodings, formats, format-details,"); + printf("format-all-details, "); #ifdef CL_VERSION_1_0 printf("opencl-devices, "); #endif -- 1.7.7.6