From: Michael Vogt Date: Wed, 7 Sep 2005 08:09:22 +0000 (+0000) Subject: * fix a stupid typo in apt.cron.daily X-Git-Tag: 0.7.21~377 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/43835916cf5ebf40df642f2a9bea6bdd702dc975?ds=inline * fix a stupid typo in apt.cron.daily --- diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index e3aaccfb0..26dfa2530 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -121,7 +121,7 @@ check_size_constraints() # check for MinAge of the file if [ ! $MinAge -eq 0 ]; then # check both ctime and mtime - mtime=$(date -c %Y $file) + mtime=$(stat -c %Y $file) ctime=$(stat -c %Z $file) if [ $mtime -gt $ctime ]; then delta=$(($now-$mtime))