From b5f6a278bb1462f3d5532f2a900ecd19db049f99 Mon Sep 17 00:00:00 2001 From: Zakir Durumeric Date: Wed, 9 Oct 2013 17:07:00 -0400 Subject: [PATCH] help to show selected output module name before printing help text --- src/zmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zmap.c b/src/zmap.c index 69b6241..b4f564e 100644 --- a/src/zmap.c +++ b/src/zmap.c @@ -426,7 +426,7 @@ int main(int argc, char *argv[]) } else { printf("no help text available\n"); } - printf("\nselected output-module help\n"); + printf("\nselected output-module (%s) help\n", zconf.output_module->name); if (zconf.output_module->helptext) { printf("%s\n", zconf.output_module->helptext); } else {