summaryrefslogtreecommitdiff
path: root/ruth
diff options
context:
space:
mode:
authorneal <neal>2008-02-11 14:27:46 +0000
committerneal <neal>2008-02-11 14:27:46 +0000
commit3d06ed18133d1bd58d536a6f94eb4973aa501e32 (patch)
treec993afdcd2999a0be6dfe1291a02daaefb227c3c /ruth
parentf09489628afb6cda4a2c21ba91f65cb581510ef6 (diff)
hurd/
2008-02-11 Neal H. Walfield <neal@gnu.org> * stddef.h (debug): Change program_name's type to char *. * t-addr-trans.c (program_name): Change type to char *. * t-addr.c (program_name): Likewise. * t-rpc.c (program_name): Likewise. laden/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * laden.h (program_name): Change type to char *. * laden.c (program_name): Likewise. * shutdown.h (program_name): Likewise. * output.h (debug): Change program_name's type to char *. libc-parts/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * ia32-cmain.c (program_name): Change type to char *. * t-setjmp.c (program_name): Likewise. * assert.h (assertx): Change program_name's type to char *. libhurd-btree/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * btree-test.c (program_name): Change type to char *. libhurd-ihash/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * t-ihash.c (program_name): Change type to char *. ruth/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * ruth.c (program_name): Change type to char *. viengoos/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * viengoos.c (program_name): Change type to char *. * viengoos.h (program_name): Likewise. * panic.c (program_name): Likewise. * t-environment.h (program_name): Likewise. (environment_init): Just set program_name to argv[0].
Diffstat (limited to 'ruth')
-rw-r--r--ruth/ChangeLog4
-rw-r--r--ruth/ruth.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ruth/ChangeLog b/ruth/ChangeLog
index 9bbbda1..2d98805 100644
--- a/ruth/ChangeLog
+++ b/ruth/ChangeLog
@@ -1,5 +1,9 @@
2008-02-11 Neal H. Walfield <neal@gnu.org>
+ * ruth.c (program_name): Change type to char *.
+
+2008-02-11 Neal H. Walfield <neal@gnu.org>
+
* ruth.c (main): When checking the ability to get and set an
activity's policy, don't use the main activity. Instead, allocate
a new activity and use that.
diff --git a/ruth/ruth.c b/ruth/ruth.c
index fcd2ee7..c44e544 100644
--- a/ruth/ruth.c
+++ b/ruth/ruth.c
@@ -50,7 +50,7 @@ extern struct hurd_startup_data *__hurd_startup_data;
/* The program name. */
-const char program_name[] = "ruth";
+extern char *program_name;
/* The following functions are required by pthread. */