aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-02-22 00:54:34 +0000
committerMike Frysinger <vapier@gentoo.org>2015-02-22 00:54:34 +0000
commita07a27cb149ed4bb31867aed4b646496b400db45 (patch)
tree017a99eae81f4ccb17c2581a8e5640572c8160c3 /scanelf.c
parentfix typos pointed out by Tomasz Buchert (diff)
downloadpax-utils-a07a27cb149ed4bb31867aed4b646496b400db45.tar.gz
pax-utils-a07a27cb149ed4bb31867aed4b646496b400db45.tar.bz2
pax-utils-a07a27cb149ed4bb31867aed4b646496b400db45.zip
drop __DATE__ usage as the rcsid provides all the details we care about
Diffstat (limited to 'scanelf.c')
-rw-r--r--scanelf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/scanelf.c b/scanelf.c
index 5255bd3..7313032 100644
--- a/scanelf.c
+++ b/scanelf.c
@@ -1,13 +1,13 @@
/*
* 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.271 2015/02/22 00:10:27 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.272 2015/02/22 00:54: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.271 2015/02/22 00:10:27 vapier Exp $";
+static const char rcsid[] = "$Id: scanelf.c,v 1.272 2015/02/22 00:54:34 vapier Exp $";
const char argv0[] = "scanelf";
#include "paxinc.h"
@@ -2170,9 +2170,9 @@ static int parseargs(int argc, char *argv[])
switch (i) {
case 'V':
- printf("pax-utils-%s: %s compiled %s\n%s\n"
+ printf("pax-utils-%s: %s\n%s\n"
"%s written for Gentoo by <solar and vapier @ gentoo.org>\n",
- VERSION, __FILE__, __DATE__, rcsid, argv0);
+ VERSION, __FILE__, rcsid, argv0);
exit(EXIT_SUCCESS);
break;
case 'h': usage(EXIT_SUCCESS); break;