From 027f8d60370d31d5cf1f52b1926132da7a617204 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Fri, 12 Jun 2009 00:09:55 -0400 Subject: [PATCH] Update to use the new "libarchive frontend" common functions. SVN-Revision: 1154 --- tar/siginfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tar/siginfo.c b/tar/siginfo.c index 9b00cfa8b..fd082065e 100644 --- a/tar/siginfo.c +++ b/tar/siginfo.c @@ -86,12 +86,12 @@ siginfo_init(struct bsdtar *bsdtar) sa.sa_flags = 0; #ifdef SIGINFO if (sigaction(SIGINFO, &sa, &bsdtar->siginfo->siginfo_old)) - bsdtar_errc(bsdtar, 1, errno, "sigaction(SIGINFO) failed"); + lafe_errc(1, errno, "sigaction(SIGINFO) failed"); #endif #ifdef SIGUSR1 /* ... and treat SIGUSR1 the same way as SIGINFO. */ if (sigaction(SIGUSR1, &sa, &bsdtar->siginfo->sigusr1_old)) - bsdtar_errc(bsdtar, 1, errno, "sigaction(SIGUSR1) failed"); + lafe_errc(1, errno, "sigaction(SIGUSR1) failed"); #endif } -- 2.47.3