[BACK]Return to login.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/login.c between version 1.13.2.2 and 1.13.2.3

version 1.13.2.2, 2000/11/08 21:30:56 version 1.13.2.3, 2001/03/12 15:44:11
Line 43 
Line 43 
   
 #include <util.h>  #include <util.h>
 #include <utmp.h>  #include <utmp.h>
 #include "ssh.h"  #include "login.h"
   #include "log.h"
   
 /*  /*
  * Returns the time when the user last logged in.  Returns 0 if the   * Returns the time when the user last logged in.  Returns 0 if the
Line 56 
Line 57 
  * is found).  The name of the host used last time is returned in buf.   * 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,  get_last_login_time(uid_t uid, const char *logname,
                     char *buf, unsigned int bufsize)                      char *buf, u_int bufsize)
 {  {
         struct lastlog ll;          struct lastlog ll;
         char *lastlog;          char *lastlog;

Legend:
Removed from v.1.13.2.2  
changed lines
  Added in v.1.13.2.3