freebsd-skq/usr.bin/quota
Mike Pritchard f5374712ce If a user is over both the soft block limit and soft i-node
limit, quota will report one of the grace times incorrectly.
This is due to it storing the result in a static buffer, and the
routine being called like:
	printf("....", ..., timeprnt(btime), timeprnt(itime), ...)

The problem becomes very obvious if you change one of the default
grace periods to be much larger than the other one.

Changed timeprnt to dynamically allocate the string to be displayed.
2007-02-04 14:06:58 +00:00
..
Makefile - Document the default disk block usage unit. 2006-10-21 23:57:38 +00:00
quota.1 - Document the default disk block usage unit. 2006-10-21 23:57:38 +00:00
quota.c If a user is over both the soft block limit and soft i-node 2007-02-04 14:06:58 +00:00