From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RQLXx-0000zL-9o for garchives@archives.gentoo.org; Tue, 15 Nov 2011 16:07:41 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C7F021C0C1; Tue, 15 Nov 2011 16:07:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D213021C0C1 for ; Tue, 15 Nov 2011 16:07:33 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DD07654CD for ; Tue, 15 Nov 2011 16:07:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 793C080042 for ; Tue, 15 Nov 2011 16:07:32 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <838bf16eef6d92fc46279cc07b9be2dbe4909ce2.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: src/ X-VCS-Repository: proj/elfix X-VCS-Files: src/fix-gnustack.c src/paxctl-ng.c X-VCS-Directories: src/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 838bf16eef6d92fc46279cc07b9be2dbe4909ce2 Date: Tue, 15 Nov 2011 16:07:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 250c0f35-6fec-4560-88a3-01a9dae3a363 X-Archives-Hash: 9a5157c14966487c47128fd298bac4b3 commit: 838bf16eef6d92fc46279cc07b9be2dbe4909ce2 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Nov 15 16:07:15 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Nov 15 16:07:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3D838bf16e src/{fix-gnustack.c,paxctl-ng.c}: fix exit code --- src/fix-gnustack.c | 2 ++ src/paxctl-ng.c | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/fix-gnustack.c b/src/fix-gnustack.c index 8a43551..15e23e0 100644 --- a/src/fix-gnustack.c +++ b/src/fix-gnustack.c @@ -139,4 +139,6 @@ main( int argc, char *argv[]) =20 elf_end(elf); close(fd); + + exit(EXIT_SUCCESS); } diff --git a/src/paxctl-ng.c b/src/paxctl-ng.c index 8f5bf62..5527e40 100644 --- a/src/paxctl-ng.c +++ b/src/paxctl-ng.c @@ -569,4 +569,6 @@ main( int argc, char *argv[]) =20 printf("\n"); } + + exit(EXIT_SUCCESS); }