diff options
author | mouring <mouring> | 2001-07-04 04:07:12 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-07-04 04:07:12 +0000 |
commit | 0e6a0ff6aa41b46017956a0e72184f87a65295a7 (patch) | |
tree | d7c0ab850132eb5672b5bf59e7c0193f90a222af /sshlogin.h | |
parent | 56cf9ce5941a5cd98d2241add6b5c5aad6101ef4 (diff) | |
download | openssh-0e6a0ff6aa41b46017956a0e72184f87a65295a7.tar.gz |
- itojun@cvs.openbsd.org 2001/06/26 06:33:07
[servconf.h serverloop.h session.h sftp-client.h sftp-common.h
sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h
ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h]
prototype pedant. not very creative...
- () -> (void)
- no variable names
Diffstat (limited to 'sshlogin.h')
-rw-r--r-- | sshlogin.h | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sshlogin.h,v 1.1 2001/03/04 01:46:30 djm Exp $ */ +/* $OpenBSD: sshlogin.h,v 1.2 2001/06/26 06:33:04 itojun Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -20,30 +20,29 @@ * The host from which the user logged in is stored in buf. */ u_long -get_last_login_time(uid_t uid, const char *logname, - char *buf, u_int bufsize); +get_last_login_time(uid_t, const char *, char *, u_int); /* * Records that the user has logged in. This does many things normally done * by login(1). */ void -record_login(pid_t pid, const char *ttyname, const char *user, uid_t uid, - const char *host, struct sockaddr *addr); +record_login(pid_t, const char *, const char *, uid_t, const char *, + struct sockaddr *); #ifdef LOGIN_NEEDS_UTMPX /* * Record just the utmp info for /bin/login. */ void -record_utmp_only(pid_t pid, const char *ttyname, const char *user, - const char *host, struct sockaddr * addr); +record_utmp_only(pid_t, const char *, const char *, const char *, + struct sockaddr *); #endif /* * Records that the user has logged out. This does many thigs normally done * by login(1) or init. */ -void record_logout(pid_t pid, const char *ttyname); +void record_logout(pid_t, const char *); #endif |