Page MenuHomeFreeBSD

quot: Make nusers unsigned
ClosedPublic

Authored by des on Oct 20 2025, 5:55 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, May 22, 8:56 PM
Unknown Object (File)
Sun, May 17, 7:00 AM
Unknown Object (File)
Fri, May 15, 2:23 PM
Unknown Object (File)
Fri, May 15, 11:18 AM
Unknown Object (File)
Fri, May 15, 7:20 AM
Unknown Object (File)
Thu, May 14, 11:30 PM
Unknown Object (File)
Wed, May 13, 6:22 PM
Unknown Object (File)
Wed, May 13, 5:58 PM
Subscribers

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

des requested review of this revision.Oct 20 2025, 5:55 PM

Thanks for the follow up.

usr.sbin/quot/quot.c
194

This is good but consider if you prefer a more conventional for (usr = users, i = 0; i < nusers; usr++, i++) or similar here. Similar question for other loop counters.

212

I see that there's more of a reason to count backward here.

374

Did you want to give n and this line the same treatment?

This revision is now accepted and ready to land.Oct 20 2025, 7:21 PM
usr.sbin/quot/quot.c
194

See D53130

This revision was automatically updated to reflect the committed changes.