Displaying 1 result from an estimated 1 matches for "orig_sess".
Did you mean:
orig_dest
2006 Jan 13
2
LoginGraceTime
...We've found some undesirable behavior with respect to LoginGraceTime. A
minor code change in session.c seems to clear it up, but now I'm asking
for help in better understanding the problem and determining if there
any unexpected side effects of the change.
First, the code change:
$ diff orig_session.c session.c
216c216,218
< alarm(0);
---
> verbose("Clearing alarm in do_authenticated");
> /*alarm(0);*/
> signal(SIGALRM, SIG_IGN);
So, I replaced "alarm(0);" in do_authenticated with a call to verbose
and a "signal(SIGALRM, SIG_IGN)...