From b6ba74cd4eaec2b6cb515748cf1b74a19133d4a4 Mon Sep 17 00:00:00 2001 From: Jun-ichi Takimoto Date: Sun, 25 Oct 2020 23:02:36 +0100 Subject: 47301: Fix print -v metafication --- ChangeLog | 5 +++++ Src/builtin.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5650bdd68..abc051765 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2020-10-25 Mikael Magnusson + + * Jun-ichi Takimoto: 47301: Src/builtin.c: Fix print -v + metafication + 2020-10-18 Roman Perepelitsa * 47476: Src/Modules/files.c: Fix a race condition in zf_mkdir -p diff --git a/Src/builtin.c b/Src/builtin.c index ff84ce936..09eb3728c 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -4862,7 +4862,7 @@ bin_print(char *name, char **args, Options ops, int func) /* normal output */ if (!fmt) { - if (OPT_ISSET(ops, 'z') || OPT_ISSET(ops, 'v') || + if (OPT_ISSET(ops, 'z') || OPT_ISSET(ops, 's') || OPT_ISSET(ops, 'S')) { /* * We don't want the arguments unmetafied after all. -- cgit 1.4.1