/* Successfully identified user: */
client->fcl_user = strdup2(p_entry->pw_name);
- explain("Client's pid=%d, uid=%d, username=%s\n",
+ explain("Client's pid=%d, uid=%d, username=%s",
ucred_getpid(ucred), uid, client->fcl_user);
}
/* Successfully identified user: */
client->fcl_user = strdup2(p_entry->pw_name);
- explain("Client's uid=%d, gid=%d username=%s\n", euid, egid,
+ explain("Client's uid=%d, gid=%d username=%s", euid, egid,
client->fcl_user);
}
/* Successfully identified user: */
client->fcl_user = strdup2(p_entry->pw_name);
- explain("Client's pid=%d, uid=%d, gid=%d username=%s\n", cred.pid, cred.uid,
+ explain("Client's pid=%d, uid=%d, gid=%d username=%s", cred.pid, cred.uid,
cred.gid, client->fcl_user);
}