diff options
Diffstat (limited to 'coreutils/date.c')
-rw-r--r-- | coreutils/date.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index c111b6161..401d2ffb7 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -165,8 +165,7 @@ int date_main(int argc, char **argv) | |||
165 | 165 | ||
166 | if(filename) { | 166 | if(filename) { |
167 | struct stat statbuf; | 167 | struct stat statbuf; |
168 | if(stat(filename,&statbuf)) | 168 | xstat(filename,&statbuf); |
169 | bb_perror_msg_and_die("File '%s' not found.", filename); | ||
170 | tm=statbuf.st_mtime; | 169 | tm=statbuf.st_mtime; |
171 | } else time(&tm); | 170 | } else time(&tm); |
172 | memcpy(&tm_time, localtime(&tm), sizeof(tm_time)); | 171 | memcpy(&tm_time, localtime(&tm), sizeof(tm_time)); |