On Wed, Aug 01, 2001 at 12:26:28AM -0400, Justus Pendleton wrote:
> It only takes about three lines of code to authlib/authdaemond.c as
> the included patch demonstrates.
It helps if I include the aforementioned patch:
*** orig.c Wed Aug 1 00:10:27 2001
--- authdaemond.c Wed Aug 1 00:16:48 2001
***************
*** 481,486 ****
--- 481,490 ----
{
+ time_t login_time;
free(q);
free(pp);
+ time (&login_time);
+ syslog(LOG_INFO,
+ "authdaemon: login at %s", ctime (&login_time));
return;
}
if (errno != EPERM)
- How many users? Aaron Videtto
- Re: How many users? Dan Melomedman
- Re: How many users? Sam Varshavchik
- Re: How many users? Dan Melomedman
- Re: How many users? Sam Varshavchik
- RE: How many users? Aaron Videtto
- RE: How many users? Jason Striegel
- Re: How many users? Justus Pendleton
- Justus Pendleton
