lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1359085459-15711-1-git-send-email-wenqing.lz@taobao.com> Date: Fri, 25 Jan 2013 11:44:19 +0800 From: Zheng Liu <gnehzuil.liu@...il.com> To: linux-ext4@...r.kernel.org Cc: Zheng Liu <wenqing.lz@...bao.com> Subject: [PATCH] contrib: print missing '-p' argument in fallocate.c From: Zheng Liu <wenqing.lz@...bao.com> In fallocate.c it has supported hole punching, but '-p' argument does not be printed in usage. So fix it to let the user know it. Signed-off-by: Zheng Liu <wenqing.lz@...bao.com> --- contrib/fallocate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/fallocate.c b/contrib/fallocate.c index 1436b70..1f9b59a 100644 --- a/contrib/fallocate.c +++ b/contrib/fallocate.c @@ -39,7 +39,7 @@ void usage(void) { - printf("Usage: fallocate [-nt] [-o offset] -l length filename\n"); + printf("Usage: fallocate [-npt] [-o offset] -l length filename\n"); exit(EXIT_FAILURE); } -- 1.7.12.rc2.18.g61b472e -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists