This commit is contained in:
Dag-Erling Smørgrav 2008-10-20 17:04:57 +00:00
parent 92657d3cbd
commit a4578a3c98

View File

@ -72,9 +72,10 @@ parse_lt(const char * str)
char buf[64];
/* Make local copy and force lowercase to simplify parsing */
p = strlcpy(buf, str, sizeof buf);
strlcpy(buf, str, sizeof buf);
for (i = 0; buf[i]; i++)
buf[i] = (char)tolower(buf[i]);
p = buf;
while (isalpha(*p)) {
@ -157,4 +158,3 @@ in_lts(const login_time_t * ltm, time_t * t)
{
return in_ltms(ltm, localtime(t), t);
}