1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

More crypt() cleanup.

This commit is contained in:
Bruce Momjian 2003-05-10 04:06:55 +00:00
parent 37627eb571
commit 199f24e19d

View File

@ -769,14 +769,6 @@ init_des()
static unsigned char perm[64], tmp32[32]; /* "static" for speed */ static unsigned char perm[64], tmp32[32]; /* "static" for speed */
static volatile long init_start = 0; static volatile long init_start = 0;
if (InterlockedCompareExchange((PVOID *)&init_start,
(PVOID)1, (PVOID)0) == (PVOID)1)
{
while (!des_ready)
Sleep(0);
return;
}
/* /*
* table that converts chars "./0-9A-Za-z"to integers 0-63. * table that converts chars "./0-9A-Za-z"to integers 0-63.
*/ */