=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshlogin.c,v retrieving revision 1.5 retrieving revision 1.5.4.1 diff -u -r1.5 -r1.5.4.1 --- src/usr.bin/ssh/sshlogin.c 2002/08/29 15:57:25 1.5 +++ src/usr.bin/ssh/sshlogin.c 2003/09/16 20:50:44 1.5.4.1 @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshlogin.c,v 1.5 2002/08/29 15:57:25 stevesk Exp $"); +RCSID("$OpenBSD: sshlogin.c,v 1.5.4.1 2003/09/16 20:50:44 brad Exp $"); #include #include @@ -79,8 +79,8 @@ } /* - * Records that the user has logged in. I these parts of operating systems - * were more standardized. + * Records that the user has logged in. I wish these parts of operating + * systems were more standardized. */ void record_login(pid_t pid, const char *ttyname, const char *user, uid_t uid, @@ -117,7 +117,7 @@ if (fd >= 0) { lseek(fd, (off_t) ((long) uid * sizeof(ll)), SEEK_SET); if (write(fd, &ll, sizeof(ll)) != sizeof(ll)) - log("Could not write %.100s: %.100s", lastlog, strerror(errno)); + logit("Could not write %.100s: %.100s", lastlog, strerror(errno)); close(fd); } }