diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-05-10 04:06:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-05-10 04:06:55 +0000 |
commit | 199f24e19d9f0ef1e2d625afe985e494c19dd859 (patch) | |
tree | 43b35f967e75da924f344d5586f6252aec35bbee /src | |
parent | 37627eb57118108d35b251aafdd156f03ff9d443 (diff) | |
download | postgresql-199f24e19d9f0ef1e2d625afe985e494c19dd859.tar.gz postgresql-199f24e19d9f0ef1e2d625afe985e494c19dd859.zip |
More crypt() cleanup.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/crypt.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/port/crypt.c b/src/port/crypt.c index a76a0934e49..dd3e7ecb2a2 100644 --- a/src/port/crypt.c +++ b/src/port/crypt.c @@ -769,14 +769,6 @@ init_des() static unsigned char perm[64], tmp32[32]; /* "static" for speed */ 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. */ |