1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Avoid a warning by making a variable a const char *.

This commit is contained in:
David Malone 2001-05-01 10:35:20 +00:00
parent 0627f53b57
commit ea66ccbf96
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=76183

View File

@ -135,7 +135,8 @@ doit(f, fromp)
struct sockaddr_in *fromp;
{
FILE *fp;
char cmdbuf[NCARGS+1], *cp, *namep;
char cmdbuf[NCARGS+1], *cp;
const char *namep;
#ifdef SKEY
char user[16], pass[100];
#else /* SKEY */