summaryrefslogtreecommitdiff
path: root/inet
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-04-04 15:39:36 +0000
committerUlrich Drepper <drepper@redhat.com>1997-04-04 15:39:36 +0000
commit16afa991d0e4067f669d2f4e3c92c126d17e5c8f (patch)
treeb5bee1d97fd94d3499b2f67ebd4b1d6b8b847283 /inet
parent9ad114ad582b684730ccfb2240151cb07977a555 (diff)
Make string parameters `const'.
Diffstat (limited to 'inet')
-rw-r--r--inet/rexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inet/rexec.c b/inet/rexec.c
index 611ff57287..72df066b03 100644
--- a/inet/rexec.c
+++ b/inet/rexec.c
@@ -53,7 +53,7 @@ int
rexec(ahost, rport, name, pass, cmd, fd2p)
char **ahost;
int rport;
- char *name, *pass, *cmd;
+ const char *name, *pass, *cmd;
int *fd2p;
{
struct sockaddr_in sin, sin2, from;