diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-02 04:32:07 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-02 04:32:07 -0500 |
commit | 10c47816af92c613d67bb717286f3f8397d96c43 (patch) | |
tree | 19a6903252b18b3844731981eb3a203bdf508c85 /scanmacho.c | |
parent | scanelf: add more range checks to deal with corrupt elfs (diff) | |
download | pax-utils-10c47816af92c613d67bb717286f3f8397d96c43.tar.gz pax-utils-10c47816af92c613d67bb717286f3f8397d96c43.tar.bz2 pax-utils-10c47816af92c613d67bb717286f3f8397d96c43.zip |
migrate to gitv1.0
Diffstat (limited to 'scanmacho.c')
-rw-r--r-- | scanmacho.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scanmacho.c b/scanmacho.c index 71e971c..a36aed4 100644 --- a/scanmacho.c +++ b/scanmacho.c @@ -1,7 +1,6 @@ /* * Copyright 2008-2012 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 - * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanmacho.c,v 1.25 2015/02/22 00:54:34 vapier Exp $ * * based on scanelf by: * Copyright 2003-2012 Ned Ludd - <solar@gentoo.org> @@ -10,7 +9,6 @@ * 2008-2013 Fabian Groffen - <grobian@gentoo.org> */ -static const char rcsid[] = "$Id: scanmacho.c,v 1.25 2015/02/22 00:54:34 vapier Exp $"; const char argv0[] = "scanmacho"; #include "paxinc.h" @@ -630,9 +628,9 @@ static int parseargs(int argc, char *argv[]) switch (i) { case 'V': - printf("pax-utils-%s: %s\n%s\n" + printf("pax-utils-%s: %s\n" "%s written for Gentoo by <solar, vapier and grobian @ gentoo.org>\n", - VERSION, __FILE__, rcsid, argv0); + VERSION, VCSID, argv0); exit(EXIT_SUCCESS); break; case 'h': usage(EXIT_SUCCESS); break; |