Remove an unused variable, and don't try to print a char[] using %d.

Submitted by:	Mark Peek <mark@whistle.com>
This commit is contained in:
dd 2001-07-18 11:49:45 +00:00
parent cb0776eac7
commit c821518dec

View File

@ -262,7 +262,7 @@ load_entry(file, error_func, pw, envp)
if (!pw) {
char *username = cmd; /* temp buffer */
char *s, *group;
char *s;
struct group *grp;
#ifdef LOGIN_CAP
login_cap_t *lc;
@ -409,7 +409,7 @@ load_entry(file, error_func, pw, envp)
*/
e->cmd = strdup(cmd);
if (e->cmd == NULL) {
warn("strdup(\"%d\")", cmd);
warn("strdup(\"%s\")", cmd);
ecode = e_mem;
goto eof;
}