mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
12 lines
277 B
Diff
12 lines
277 B
Diff
--- apg.c.orig 2003-08-07 08:40:39.000000000 -0700
|
|
+++ apg.c 2020-05-29 00:42:19.000000000 -0700
|
|
@@ -709,7 +709,7 @@
|
|
*/
|
|
char * crypt_passstring (const char *p)
|
|
{
|
|
- char salt[10];
|
|
+ char salt[11];
|
|
gen_rand_pass (salt, 10, 10, S_SL|S_CL|S_NB);
|
|
return (crypt(p, salt));
|
|
}
|