From: Yu Watanabe Date: Wed, 11 Sep 2019 09:11:19 +0000 (+0900) Subject: fileio: update warning message X-Git-Tag: v244-rc1~315^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f93577647cef5f683d83e89cc63f6124885e708;p=thirdparty%2Fsystemd.git fileio: update warning message --- diff --git a/src/basic/fileio.c b/src/basic/fileio.c index 623e43e4cae..a9c0fd20e14 100644 --- a/src/basic/fileio.c +++ b/src/basic/fileio.c @@ -930,10 +930,10 @@ int warn_file_is_world_accessible(const char *filename, struct stat *st, const c if (unit) log_syntax(unit, LOG_WARNING, filename, line, 0, - "%s has %04o mode that is too permissive, please adjust the access mode.", + "%s has %04o mode that is too permissive, please adjust the ownership and access mode.", filename, st->st_mode & 07777); else - log_warning("%s has %04o mode that is too permissive, please adjust the access mode.", + log_warning("%s has %04o mode that is too permissive, please adjust the ownership and access mode.", filename, st->st_mode & 07777); return 0; }