aboutsummaryrefslogtreecommitdiff
path: root/lib/libpam/modules
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2013-04-05 23:41:34 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2013-04-05 23:41:34 +0000
commit068f3d2f8419b65db76a3ff9eba0558a6481da43 (patch)
treeddf5e50f1bd3d1573925df776978f95d5492e9b4 /lib/libpam/modules
parentc46c2523c205d6b6be1fc0bf60956552534fa393 (diff)
Notes
Diffstat (limited to 'lib/libpam/modules')
-rw-r--r--lib/libpam/modules/pam_unix/pam_unix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpam/modules/pam_unix/pam_unix.c b/lib/libpam/modules/pam_unix/pam_unix.c
index 5881ecf07b3cd..9a213e2040c0d 100644
--- a/lib/libpam/modules/pam_unix/pam_unix.c
+++ b/lib/libpam/modules/pam_unix/pam_unix.c
@@ -460,14 +460,14 @@ to64(char *s, long v, int n)
}
/* Salt suitable for traditional DES and MD5 */
-void
-makesalt(char salt[SALTSIZE])
+static void
+makesalt(char salt[SALTSIZE + 1])
{
int i;
/* These are not really random numbers, they are just
* numbers that change to thwart construction of a
- * dictionary. This is exposed to the public.
+ * dictionary.
*/
for (i = 0; i < SALTSIZE; i += 4)
to64(&salt[i], arc4random(), 4);