From 1bb552b1d9da749050274e0a9cb10b672db22d77 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 5 Apr 2007 21:25:15 +0000 Subject: libbb: add xunlink() patch: do not try to delete same file twice --- libbb/xfuncs.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libbb/xfuncs.c') diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index b08f92d81..c18a1d998 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -122,6 +122,12 @@ int xopen3(const char *pathname, int flags, int mode) return ret; } +void xunlink(const char *pathname) +{ + if (unlink(pathname)) + bb_perror_msg_and_die("cannot remove file '%s'", pathname); +} + // Turn on nonblocking I/O on a fd int ndelay_on(int fd) { -- cgit v1.2.3