From d0e0d25b54ca14161a49b018aca640414a8bbb10 Mon Sep 17 00:00:00 2001 From: fanyong Date: Mon, 16 Oct 2006 12:33:35 +0000 Subject: [PATCH] Make the warning message more readable. --- lustre/llite/xattr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/llite/xattr.c b/lustre/llite/xattr.c index 5a163f1..0d0437f 100644 --- a/lustre/llite/xattr.c +++ b/lustre/llite/xattr.c @@ -92,10 +92,10 @@ int xattr_type_filter(struct ll_sb_info *sbi, int xattr_type) (xattr_type == XATTR_ACL_DEFAULT_T)) { if (sbi->ll_flags & LL_SBI_RMT_CLIENT) { CWARN("For remote client, " - "repalce \"xetfacl\" with \"lfs xetfacl\""); + "please use \"lfs getfacl\" / \"lfs setfacl\""); return -EOPNOTSUPP; } else if (!(sbi->ll_flags & LL_SBI_ACL)) { - CWARN("Server not support xetfacl\n"); + CWARN("Server not support ACL!\n"); return -EOPNOTSUPP; } } -- 1.8.3.1