From: Tor Arne Vestbø Date: Thu, 15 Jun 2017 12:50:00 +0000 (+0200) Subject: Update log message and docs when using SLOPPY_FILE_STAT_MATCHES X-Git-Tag: v3.3.5~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4e87aa7ef0c1a7ccbdb47041acf49cefa08d216;p=thirdparty%2Fccache.git Update log message and docs when using SLOPPY_FILE_STAT_MATCHES The size is no longer part of this check. --- diff --git a/MANUAL.txt b/MANUAL.txt index c960979c2..a72922a7f 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -491,7 +491,7 @@ when compiling preprocessed source code. *file_stat_matches*:: ccache normally examines a file's contents to determine whether it matches the cached version. With this option set, ccache will consider a file as - matching its cached version if the sizes, mtimes and ctimes match. + matching its cached version if the mtimes and ctimes match. *include_file_ctime*:: By default, ccache also will not cache a file if it includes a header whose ctime is too new. This option disables that check. diff --git a/manifest.c b/manifest.c index b84cc55a1..f84bef44b 100644 --- a/manifest.c +++ b/manifest.c @@ -383,10 +383,10 @@ verify_object(struct conf *conf, struct manifest *mf, struct object *obj, if (conf->sloppiness & SLOPPY_FILE_STAT_MATCHES) { if (fi->mtime == st->mtime && fi->ctime == st->ctime) { - cc_log("size/mtime/ctime hit for %s", path); + cc_log("mtime/ctime hit for %s", path); continue; } else { - cc_log("size/mtime/ctime miss for %s", path); + cc_log("mtime/ctime miss for %s", path); } }