diff options
author | Denis Vlasenko | 2007-04-09 21:35:07 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-09 21:35:07 +0000 |
commit | 3f3aa2a57dc648ade9083f3b3ad83cce8206b912 (patch) | |
tree | d5c648f583bb2edef25f05c2bed303df3d1a61f6 /coreutils/cmp.c | |
parent | cd7001f7055c3fc2d6298ab9e3befe91e951c652 (diff) | |
download | busybox-3f3aa2a57dc648ade9083f3b3ad83cce8206b912.zip busybox-3f3aa2a57dc648ade9083f3b3ad83cce8206b912.tar.gz |
make xfunctions optionally longjump instead of exit.
use it for making NOFORK more practical.
touch: make it a NOFORK applet
Diffstat (limited to 'coreutils/cmp.c')
-rw-r--r-- | coreutils/cmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cmp.c b/coreutils/cmp.c index cff1182..c70f882 100644 --- a/coreutils/cmp.c +++ b/coreutils/cmp.c @@ -30,7 +30,7 @@ static FILE *cmp_xfopen_input(const char * const filename) fp = fopen_or_warn_stdin(filename); if (fp) return fp; - exit(xfunc_error_retval); /* We already output an error message. */ + sleep_and_die(); /* We already output an error message. */ } static const char fmt_eof[] = "cmp: EOF on %s\n"; |