aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-03-02 04:32:07 -0500
committerMike Frysinger <vapier@gentoo.org>2015-03-02 04:32:07 -0500
commit10c47816af92c613d67bb717286f3f8397d96c43 (patch)
tree19a6903252b18b3844731981eb3a203bdf508c85 /scanelf.c
parentscanelf: add more range checks to deal with corrupt elfs (diff)
downloadpax-utils-10c47816af92c613d67bb717286f3f8397d96c43.tar.gz
pax-utils-10c47816af92c613d67bb717286f3f8397d96c43.tar.bz2
pax-utils-10c47816af92c613d67bb717286f3f8397d96c43.zip
migrate to gitv1.0
Diffstat (limited to 'scanelf.c')
-rw-r--r--scanelf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/scanelf.c b/scanelf.c
index fae8640..4db4c35 100644
--- a/scanelf.c
+++ b/scanelf.c
@@ -1,13 +1,11 @@
/*
* Copyright 2003-2012 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.277 2015/02/28 22:59:34 vapier Exp $
*
* Copyright 2003-2012 Ned Ludd - <solar@gentoo.org>
* Copyright 2004-2012 Mike Frysinger - <vapier@gentoo.org>
*/
-static const char rcsid[] = "$Id: scanelf.c,v 1.277 2015/02/28 22:59:34 vapier Exp $";
const char argv0[] = "scanelf";
#include "paxinc.h"
@@ -2218,9 +2216,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 and vapier @ gentoo.org>\n",
- VERSION, __FILE__, rcsid, argv0);
+ VERSION, VCSID, argv0);
exit(EXIT_SUCCESS);
break;
case 'h': usage(EXIT_SUCCESS); break;