K 10 svn:author V 7 rwatson K 8 svn:date V 27 2005-01-03T18:59:04.000000Z K 7 svn:log V 484 The ffsinfo utility uses atol() to parse numeric values out of optarg strings. This isn't necessarily a bug, but it can be slightly inconvenient, because atol() doesn't know how to parse hexadecimal or octal numbers and at least one of the options of ffsinfo(8) would be easier to use if it did. Changing atol() -> strtol() allows one to use hex masks for -l MASK, i.e.: orion:/a/freebsd/src/sbin/ffsinfo# ./ffsinfo -l 0x3ff / PR: 73110 Submitted by: keramida MFC after: 2 weeks END