X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmisc%2Fcrypt.c;h=f1e310f6f1ca406c12410c57c3f22b54e3bea0e8;hb=fb247fafa04ee52dda816355ab0461132297b9a4;hp=fc5c4ee15482229a5148cb089d803ee98f6769f4;hpb=2d93d6446191def352b8913e859d6104f1398c72;p=musl diff --git a/src/misc/crypt.c b/src/misc/crypt.c index fc5c4ee1..f1e310f6 100644 --- a/src/misc/crypt.c +++ b/src/misc/crypt.c @@ -6,6 +6,6 @@ char *__crypt_r(const char *, const char *, struct crypt_data *); char *crypt(const char *key, const char *salt) { /* Note: update this size when we add more hash types */ - static char buf[64]; + static char buf[128]; return __crypt_r(key, salt, (struct crypt_data *)buf); }