summaryrefslogtreecommitdiff
path: root/gnu/dist/postfix/util/spawn_command.c
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2000-05-14 02:29:30 +0000
committerthorpej <thorpej@NetBSD.org>2000-05-14 02:29:30 +0000
commitf5a2f2d1fcf3eaab89a61ef83725d898e4367ded (patch)
tree6cc61d365682044696b11d0064093cb89efa8c72 /gnu/dist/postfix/util/spawn_command.c
parentbcb03e10afb9a91dfaaed32bf7cc7fa90ca29907 (diff)
String constants are const.
Diffstat (limited to 'gnu/dist/postfix/util/spawn_command.c')
-rw-r--r--gnu/dist/postfix/util/spawn_command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/dist/postfix/util/spawn_command.c b/gnu/dist/postfix/util/spawn_command.c
index 3f009d36edc..10dc2841b36 100644
--- a/gnu/dist/postfix/util/spawn_command.c
+++ b/gnu/dist/postfix/util/spawn_command.c
@@ -113,7 +113,7 @@ struct spawn_args {
static void get_spawn_args(struct spawn_args * args, int init_key, va_list ap)
{
- char *myname = "get_spawn_args";
+ const char *myname = "get_spawn_args";
int key;
/*
@@ -186,7 +186,7 @@ static void get_spawn_args(struct spawn_args * args, int init_key, va_list ap)
WAIT_STATUS_T spawn_command(int key,...)
{
- char *myname = "spawn_comand";
+ const char *myname = "spawn_comand";
va_list ap;
pid_t pid;
WAIT_STATUS_T wait_status;