aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dumpelf.c6
-rw-r--r--paxinc.h4
-rw-r--r--pspax.c4
-rw-r--r--scanelf.c6
-rw-r--r--scanmacho.c6
5 files changed, 13 insertions, 13 deletions
diff --git a/dumpelf.c b/dumpelf.c
index 33ab6fd..b0318f3 100644
--- a/dumpelf.c
+++ b/dumpelf.c
@@ -1,14 +1,14 @@
/*
* Copyright 2005-2007 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/dumpelf.c,v 1.27 2010/01/15 11:06:33 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/dumpelf.c,v 1.28 2010/12/08 00:54:40 vapier Exp $
*
* Copyright 2005-2007 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2007 Mike Frysinger - <vapier@gentoo.org>
*/
-static const char *rcsid = "$Id: dumpelf.c,v 1.27 2010/01/15 11:06:33 vapier Exp $";
-const char * const argv0 = "dumpelf";
+static const char *rcsid = "$Id: dumpelf.c,v 1.28 2010/12/08 00:54:40 vapier Exp $";
+const char argv0[] = "dumpelf";
#include "paxinc.h"
diff --git a/paxinc.h b/paxinc.h
index 53249ce..b054f15 100644
--- a/paxinc.h
+++ b/paxinc.h
@@ -1,7 +1,7 @@
/*
* Copyright 2005-2007 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/paxinc.h,v 1.14 2008/12/30 13:34:46 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/paxinc.h,v 1.15 2010/12/08 00:54:40 vapier Exp $
*
* Copyright 2005-2007 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2007 Mike Frysinger - <vapier@gentoo.org>
@@ -99,7 +99,7 @@ const char *strfileperms(const char *fname);
#define YELLOW COLOR("33", "01")
/* constant pointer to a constant buffer ... each program needs to set this */
-extern const char * const argv0;
+extern const char argv0[];
/* we need the space before the last comma or we trigger a bug in gcc-2 :( */
#define warn(fmt, args...) \
diff --git a/pspax.c b/pspax.c
index 0a13233..8aad5d0 100644
--- a/pspax.c
+++ b/pspax.c
@@ -12,8 +12,8 @@
* cc -o pspax pspax.c -DWANT_SYSCAP -lcap
*/
-static const char *rcsid = "$Id: pspax.c,v 1.46 2010/02/28 19:12:39 solar Exp $";
-const char * const argv0 = "pspax";
+static const char *rcsid = "$Id: pspax.c,v 1.47 2010/12/08 00:54:40 vapier Exp $";
+const char argv0[] = "pspax";
#include "paxinc.h"
#include <grp.h>
diff --git a/scanelf.c b/scanelf.c
index 52ffcb5..96995f1 100644
--- a/scanelf.c
+++ b/scanelf.c
@@ -1,14 +1,14 @@
/*
* Copyright 2003-2007 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.219 2010/12/06 20:43:48 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.220 2010/12/08 00:54:40 vapier Exp $
*
* Copyright 2003-2007 Ned Ludd - <solar@gentoo.org>
* Copyright 2004-2007 Mike Frysinger - <vapier@gentoo.org>
*/
-static const char *rcsid = "$Id: scanelf.c,v 1.219 2010/12/06 20:43:48 vapier Exp $";
-const char * const argv0 = "scanelf";
+static const char *rcsid = "$Id: scanelf.c,v 1.220 2010/12/08 00:54:40 vapier Exp $";
+const char argv0[] = "scanelf";
#include "paxinc.h"
diff --git a/scanmacho.c b/scanmacho.c
index c04187e..5b89a03 100644
--- a/scanmacho.c
+++ b/scanmacho.c
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanmacho.c,v 1.18 2010/04/04 10:03:33 grobian Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanmacho.c,v 1.19 2010/12/08 00:54:40 vapier Exp $
*
* based on scanelf by:
* Copyright 2003-2007 Ned Ludd - <solar@gentoo.org>
@@ -10,8 +10,8 @@
* 2008-2010 Fabian Groffen - <grobian@gentoo.org>
*/
-static const char *rcsid = "$Id: scanmacho.c,v 1.18 2010/04/04 10:03:33 grobian Exp $";
-const char * const argv0 = "scanmacho";
+static const char *rcsid = "$Id: scanmacho.c,v 1.19 2010/12/08 00:54:40 vapier Exp $";
+const char argv0[] = "scanmacho";
#include "paxinc.h"