diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-19 23:18:00 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-19 23:18:00 +0000 |
commit | c441e39b290077e6eeba4bc4404e49dc1da5157d (patch) | |
tree | 43226c2f4d399eb7c9606d7ee2ee3f67699f3ab6 /usr.bin/ssh/login.c | |
parent | c5d02956f7af6ef386eba1f24c13a1ddb1c37b0b (diff) |
replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'
with u_char.
Diffstat (limited to 'usr.bin/ssh/login.c')
-rw-r--r-- | usr.bin/ssh/login.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/login.c b/usr.bin/ssh/login.c index 1d59cd825f7..06eb0611c81 100644 --- a/usr.bin/ssh/login.c +++ b/usr.bin/ssh/login.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: login.c,v 1.15 2000/09/07 20:27:52 deraadt Exp $"); +RCSID("$OpenBSD: login.c,v 1.16 2000/12/19 23:17:57 markus Exp $"); #include <util.h> #include <utmp.h> @@ -56,9 +56,9 @@ RCSID("$OpenBSD: login.c,v 1.15 2000/09/07 20:27:52 deraadt Exp $"); * is found). The name of the host used last time is returned in buf. */ -unsigned long +u_long get_last_login_time(uid_t uid, const char *logname, - char *buf, unsigned int bufsize) + char *buf, u_int bufsize) { struct lastlog ll; char *lastlog; |