diff options
author | Rob Landley | 2006-03-13 15:45:16 +0000 |
---|---|---|
committer | Rob Landley | 2006-03-13 15:45:16 +0000 |
commit | c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c (patch) | |
tree | e44405a7e5212758d20a9595cbb0a82609d4a347 /coreutils | |
parent | 965030e35aed6a8b9c09267baba4c2342d5223d6 (diff) | |
download | busybox-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.zip busybox-c5b1d4d6b14f22b5e2f7ae42eb01bf2746b8001c.tar.gz |
Patch from Denis Vlasenko to add xstat() and use it.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/date.c | 3 | ||||
-rw-r--r-- | coreutils/ls.c | 2 | ||||
-rw-r--r-- | coreutils/uuencode.c | 4 |
3 files changed, 3 insertions, 6 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index c111b61..401d2ff 100644 --- a/coreutils/date.c +++ b/coreutils/date.c @@ -165,8 +165,7 @@ int date_main(int argc, char **argv) if(filename) { struct stat statbuf; - if(stat(filename,&statbuf)) - bb_perror_msg_and_die("File '%s' not found.", filename); + xstat(filename,&statbuf); tm=statbuf.st_mtime; } else time(&tm); memcpy(&tm_time, localtime(&tm), sizeof(tm_time)); diff --git a/coreutils/ls.c b/coreutils/ls.c index a575a02..964e7c9 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -230,7 +230,7 @@ static struct dnode *my_stat(char *fullname, char *name) rc = getfilecon(fullname,&sid); } #endif - rc = stat(fullname, &dstat); + rc = stat(fullname, &dstat); if(rc) { bb_perror_msg("%s", fullname); status = EXIT_FAILURE; diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index d45565c..6a82a4b 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c @@ -105,9 +105,7 @@ int uuencode_main(int argc, char **argv) switch (argc - optind) { case 2: src_stream = bb_xfopen(argv[optind], "r"); - if (stat(argv[optind], &stat_buf) < 0) { - bb_perror_msg_and_die("stat"); - } + xstat(argv[optind], &stat_buf); mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); if (src_stream == stdout) { puts("NULL"); |