summaryrefslogtreecommitdiff
path: root/coreutils/cut.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-02 05:02:46 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-02 05:02:46 +0000
commit34506361697643277042fc8d7294bc17a27d4e28 (patch)
treebf2c45a12020be4e0a37547abb50c40c0074e8ec /coreutils/cut.c
parent2d91deba45d5a284614e06cc55e2be03599ca26d (diff)
downloadbusybox-w32-34506361697643277042fc8d7294bc17a27d4e28.tar.gz
busybox-w32-34506361697643277042fc8d7294bc17a27d4e28.tar.bz2
busybox-w32-34506361697643277042fc8d7294bc17a27d4e28.zip
Latest patch from vodz. Adds a check for divide by zero in the posix
math suport, cleaner math syntax error checking, moves redundant signal string tables (from kill and ash) into libbb and provides a few cleanups elsewhere.
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r--coreutils/cut.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c
index abe05726b..3ed264870 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -344,10 +344,8 @@ extern int cut_main(int argc, char **argv)
344 int i; 344 int i;
345 FILE *file; 345 FILE *file;
346 for (i = optind; i < argc; i++) { 346 for (i = optind; i < argc; i++) {
347 file = fopen(argv[i], "r"); 347 file = wfopen(argv[i], "r");
348 if (file == NULL) { 348 if(file) {
349 perror_msg("%s", argv[i]);
350 } else {
351 cut_file(file); 349 cut_file(file);
352 fclose(file); 350 fclose(file);
353 } 351 }