diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pgcrypto/internal.c | 4 | ||||
-rw-r--r-- | contrib/uuid-ossp/.gitignore | 1 | ||||
-rw-r--r-- | contrib/uuid-ossp/uuid-ossp.c | 4 |
3 files changed, 2 insertions, 7 deletions
diff --git a/contrib/pgcrypto/internal.c b/contrib/pgcrypto/internal.c index e6d90c56567..ea377bdf83a 100644 --- a/contrib/pgcrypto/internal.c +++ b/contrib/pgcrypto/internal.c @@ -41,10 +41,6 @@ #include "common/cryptohash.h" #include "common/md5.h" -#ifndef MD5_DIGEST_LENGTH -#define MD5_DIGEST_LENGTH 16 -#endif - #ifndef SHA1_DIGEST_LENGTH #ifdef SHA1_RESULTLEN #define SHA1_DIGEST_LENGTH SHA1_RESULTLEN diff --git a/contrib/uuid-ossp/.gitignore b/contrib/uuid-ossp/.gitignore index 6c989c78729..d7260edc610 100644 --- a/contrib/uuid-ossp/.gitignore +++ b/contrib/uuid-ossp/.gitignore @@ -1,4 +1,3 @@ -/md5.c /sha1.c # Generated subdirectories /log/ diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c index 8f81c94e725..2ff7d9448bc 100644 --- a/contrib/uuid-ossp/uuid-ossp.c +++ b/contrib/uuid-ossp/uuid-ossp.c @@ -41,8 +41,8 @@ #undef uuid_hash /* - * Some BSD variants offer md5 and sha1 implementations but Linux does not, - * so we use a copy of the ones from pgcrypto. Not needed with OSSP, though. + * Some BSD variants offer sha1 implementation but Linux does not, so we use + * a copy from pgcrypto. Not needed with OSSP, though. */ #ifndef HAVE_UUID_OSSP #include "sha1.h" |