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 /dumpelf.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 'dumpelf.c')
-rw-r--r--dumpelf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dumpelf.c b/dumpelf.c
index 34474c4..d81dcf1 100644
--- a/dumpelf.c
+++ b/dumpelf.c
@@ -1,13 +1,13 @@
/*
* Copyright 2005-2012 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/dumpelf.c,v 1.32 2012/11/04 07:26:24 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/dumpelf.c,v 1.33 2015/02/22 00:54:34 vapier Exp $
*
* Copyright 2005-2012 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2012 Mike Frysinger - <vapier@gentoo.org>
*/
-static const char rcsid[] = "$Id: dumpelf.c,v 1.32 2012/11/04 07:26:24 vapier Exp $";
+static const char rcsid[] = "$Id: dumpelf.c,v 1.33 2015/02/22 00:54:34 vapier Exp $";
const char argv0[] = "dumpelf";
#include "paxinc.h"
@@ -355,9 +355,9 @@ static void parseargs(int argc, char *argv[])
switch (flag) {
case 'V': /* version info */
- 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;