From 5216fd2287260eeb4864a465121ff7870896e697 Mon Sep 17 00:00:00 2001 From: Christian Schulz Date: Mon, 14 Oct 2019 15:27:36 +0200 Subject: [PATCH] smbstatus: fix column length for DenyMode MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian Schulz Reviewed-by: Ralph Böhme Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Mon Oct 21 01:26:29 UTC 2019 on sn-devel-184 --- source3/utils/status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/utils/status.c b/source3/utils/status.c index 06e9c7341ac..e60f9034688 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -157,7 +157,7 @@ static int print_share_mode(struct file_id fid, case DENY_DOS: d_printf("DENY_DOS "); break; case DENY_READ: d_printf("DENY_READ "); break; case DENY_WRITE:d_printf("DENY_WRITE "); break; - case DENY_FCB: d_printf("DENY_FCB "); break; + case DENY_FCB: d_printf("DENY_FCB "); break; default: { d_printf("unknown-please report ! " "e->share_access = 0x%x, " -- 2.47.3