Обсуждение: pgsql/contrib/pgcrypto internal.c mhash.c open ...

Поиск
Список
Период
Сортировка

pgsql/contrib/pgcrypto internal.c mhash.c open ...

От
momjian@postgresql.org
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    momjian@postgresql.org    01/11/20 10:50:53

Modified files:
    contrib/pgcrypto: internal.c mhash.c openssl.c pgcrypto.c
                      px-hmac.c px.c px.h rijndael.c rijndael.h

Log message:
    pgcrypto uses non-standard type uint, which causes compile
    failures on FreeBSD.  This patch replaces uint -> unsigned.

    This was reported by Daniel Holtzman against 0.4pre3 standalone
    package, but it needs fixing in contrib/pgcrypto too.

    Marko Kreen