Additional style and whitespace fixes.

This commit is contained in:
Dag-Erling Smørgrav 2008-10-20 17:09:50 +00:00
parent 734413889e
commit 532045df2e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184087

View File

@ -137,11 +137,12 @@ in_ltm(const login_time_t *ltm, struct tm *tt, time_t *ends)
int
in_lt(const login_time_t *ltm, time_t *t)
{
return (in_ltm(ltm, localtime(t), t));
}
int
in_ltms(const login_time_t *ltm, struct tm * tm, time_t *t)
in_ltms(const login_time_t *ltm, struct tm *tm, time_t *t)
{
int i = 0;
@ -156,5 +157,6 @@ in_ltms(const login_time_t *ltm, struct tm * tm, time_t *t)
int
in_lts(const login_time_t *ltm, time_t *t)
{
return (in_ltms(ltm, localtime(t), t));
}