-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dag-Erling Smorgrav wrote: > Author: des > Date: Mon Oct 20 17:04:57 2008 > New Revision: 184085 > URL: http://svn.freebsd.org/changeset/base/184085 > > Log: > Unbreak > > Modified: > head/lib/libutil/login_times.c [...] > @@ -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)) { >
My pointyhat. Sorry for the breakage and thanks for fixing it! Cheers, - -- Xin LI <[EMAIL PROTECTED]> http://www.delphij.net/ FreeBSD - The Power to Serve! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) iEYEARECAAYFAkj9MzkACgkQi+vbBBjt66CZ1wCfW2xEAA1kUm/nGYd3CE2Svr8k I1EAnjMwTemKOqgyYgY+uGarBd09kVm9 =rfcb -----END PGP SIGNATURE----- _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"
