]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
mkstemp(3) and friends use a combination of base 10 digits, along
authorChristian S.J. Peron <csjp@FreeBSD.org>
Fri, 30 Dec 2005 20:10:21 +0000 (20:10 +0000)
committerChristian S.J. Peron <csjp@FreeBSD.org>
Fri, 30 Dec 2005 20:10:21 +0000 (20:10 +0000)
commit6883394118dfcdf9aa98d0e660df1b87de0697b9
treea47df45f2fc73d81deda0330b8ade61fab8a1a1d
parent388395ccaa808beb1f73ddda2ce0b0216dc26dac
mkstemp(3) and friends use a combination of base 10 digits, along
with upper and lower case letters from the English alphabet. Change
the number of possible file names mktemp will return from 26**6
to (10+26+26)**6 instead. This keeps things consistent with mkstemp(3)
usr.bin/mktemp/mktemp.1