From: fanyong Date: Mon, 16 Oct 2006 12:33:35 +0000 (+0000) Subject: Make the warning message more readable. X-Git-Tag: v1_8_0_110~486^2~496 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=d0e0d25b54ca14161a49b018aca640414a8bbb10;p=fs%2Flustre-release.git Make the warning message more readable. --- 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; } }