diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-04-14 10:30:35 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-04-14 10:30:35 +0000 |
commit | 1474d2d4568d5bcd006e338c6073e91d5c571412 (patch) | |
tree | a8da7eaca38cf33d5431625f1c779c6b71ea6a2e /usr.bin/ssh/login.c | |
parent | d03442ba263d0a1dcc4c61728720cfbfe1d3c0dd (diff) |
whitespace cleanup
Diffstat (limited to 'usr.bin/ssh/login.c')
-rw-r--r-- | usr.bin/ssh/login.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/ssh/login.c b/usr.bin/ssh/login.c index 574a9cc88c6..5669c46d474 100644 --- a/usr.bin/ssh/login.c +++ b/usr.bin/ssh/login.c @@ -1,24 +1,24 @@ /* - * + * * login.c - * + * * Author: Tatu Ylonen <ylo@cs.hut.fi> - * + * * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved - * + * * Created: Fri Mar 24 14:51:08 1995 ylo - * + * * This file performs some of the things login(1) normally does. We cannot * easily use something like login -p -h host -f user, because there are * several different logins around, and it is hard to determined what kind of * login the current system has. Also, we want to be able to execute commands * on a tty. - * + * */ #include "includes.h" -RCSID("$Id: login.c,v 1.11 2000/01/04 00:07:59 markus Exp $"); +RCSID("$Id: login.c,v 1.12 2000/04/14 10:30:31 markus Exp $"); #include <util.h> #include <utmp.h> @@ -35,7 +35,7 @@ RCSID("$Id: login.c,v 1.11 2000/01/04 00:07:59 markus Exp $"); * is found). The name of the host used last time is returned in buf. */ -unsigned long +unsigned long get_last_login_time(uid_t uid, const char *logname, char *buf, unsigned int bufsize) { @@ -67,7 +67,7 @@ get_last_login_time(uid_t uid, const char *logname, * were more standardized. */ -void +void record_login(int pid, const char *ttyname, const char *user, uid_t uid, const char *host, struct sockaddr * addr) { @@ -115,7 +115,7 @@ record_login(int pid, const char *ttyname, const char *user, uid_t uid, /* Records that the user has logged out. */ -void +void record_logout(int pid, const char *ttyname) { const char *line = ttyname + 5; /* /dev/ttyq8 -> ttyq8 */ |