From: Brian Behlendorf Date: Fri, 29 Apr 2011 21:03:12 +0000 (-0700) Subject: Correct MAXUID X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;h=94e954257acadca5d858741457282c63bb18c442;hp=94e954257acadca5d858741457282c63bb18c442;p=zfs.git Correct MAXUID The uid_t on most systems is in fact and unsigned 32-bit value. This is almost always correct, however you could compile your kernel to use an unsigned 16-bit value for uid_t. In practice I've never encountered a distribution which does this so I'm willing to overlook this corner case for now. Closes #165 ---