summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-02-20 04:05:36 +0000
committerMiles Bader <miles@gnu.org>1997-02-20 04:05:36 +0000
commit381ac9c2c8e247fc3886b6332aea64faf831b8bb (patch)
treed560c6b84226288e3f2afd9dc8f38699f63bb832
parent23d59ada06aa07665200ee5635914a23c6823c0c (diff)
(argp_program_version): Make const.
-rw-r--r--auth/auth.c4
-rw-r--r--daemons/lmail.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/auth/auth.c b/auth/auth.c
index 5fd2897c..d1c7ea6d 100644
--- a/auth/auth.c
+++ b/auth/auth.c
@@ -1,5 +1,5 @@
/* Authentication server.
- Copyright (C) 1996 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997 Free Software Foundation, Inc.
Written by Roland McGrath.
This file is part of the GNU Hurd.
@@ -33,7 +33,7 @@
#include "auth_S.h"
#include "auth_reply_U.h"
-char *argp_program_version = STANDARD_HURD_VERSION(auth);
+const char *argp_program_version = STANDARD_HURD_VERSION(auth);
/* Auth handles are server ports with sets of ids. */
diff --git a/daemons/lmail.c b/daemons/lmail.c
index 9aea63b6..fbcd1ae7 100644
--- a/daemons/lmail.c
+++ b/daemons/lmail.c
@@ -1,6 +1,6 @@
/* Local mail delivery
- Copyright (C) 1996 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
@@ -36,7 +36,7 @@
#define OPT_FILE -5
-char *argp_program_version = STANDARD_HURD_VERSION (mail.local);
+const char *argp_program_version = STANDARD_HURD_VERSION (mail.local);
static const struct argp_option
options[] =