From: Ulrich Drepper Date: Fri, 4 Apr 1997 15:39:36 +0000 (+0000) Subject: Make string parameters `const'. X-Git-Tag: cvs/libc20x-ud-970404~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16afa991d0e4067f669d2f4e3c92c126d17e5c8f;p=thirdparty%2Fglibc.git Make string parameters `const'. --- diff --git a/inet/rexec.c b/inet/rexec.c index 611ff572870..72df066b03e 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;