From: Timo Sirainen Date: Tue, 27 Oct 2009 21:35:16 +0000 (-0400) Subject: eaccess_error*(): Error message updated. X-Git-Tag: 2.0.alpha3~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75804457bc8837885b3b6200e7fd680264872014;p=thirdparty%2Fdovecot%2Fcore.git eaccess_error*(): Error message updated. --HG-- branch : HEAD --- diff --git a/src/lib/eacces-error.c b/src/lib/eacces-error.c index adb59d8c69..dd1c8b59ad 100644 --- a/src/lib/eacces-error.c +++ b/src/lib/eacces-error.c @@ -151,7 +151,8 @@ eacces_error_get_full(const char *func, const char *path, bool creating) if (errno == EACCES) str_printfa(errmsg, " missing +w perm: %s", path); } else - str_printfa(errmsg, " UNIX perms seem ok, ACL problem?"); + str_printfa(errmsg, " UNIX perms appear ok, " + "some security policy wrong?"); } str_append_c(errmsg, ')'); errno = orig_errno;