Replace two calls to strlen+calloc+strcpy with strdup.

Reviewed by:	sheldonh
This commit is contained in:
David Malone 2000-08-03 15:12:06 +00:00
parent 61793a0c8b
commit 3b2084258c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64194

View File

@ -1445,21 +1445,13 @@ cfline(line, f, prog, host)
/* save hostname if any */
if (host && *host == '*') host = NULL;
if (host) {
f->f_host = calloc(1, strlen(host)+1);
if (f->f_host) {
strcpy(f->f_host, host);
}
}
if (host)
f->f_host = strdup(host);
/* save program name if any */
if(prog && *prog=='*') prog = NULL;
if(prog) {
f->f_program = calloc(1, strlen(prog)+1);
if(f->f_program) {
strcpy(f->f_program, prog);
}
}
if(prog)
f->f_program = strdup(host);
/* scan through the list of selectors */
for (p = line; *p && *p != '\t' && *p != ' ';) {