diff options
author | Tom Lane | 2005-07-11 15:07:59 +0000 |
---|---|---|
committer | Tom Lane | 2005-07-11 15:07:59 +0000 |
commit | e997758cb67526549b56a89658f7a42104716cf0 (patch) | |
tree | 25704e6e929bc209281b1859917be9935e4007b0 /contrib/pgcrypto/pgp-mpi-openssl.c | |
parent | 3c52d17fa66ab1ac447fcc052df9dde470d5b195 (diff) |
More pgcrypto fixes: avoid bogus alignment assumptions in sha2,
be more wary about having a value for BYTE_ORDER, clean up randomly-
chosen ways of including Postgres core headers.
Marko Kreen and Tom Lane
Diffstat (limited to 'contrib/pgcrypto/pgp-mpi-openssl.c')
-rw-r--r-- | contrib/pgcrypto/pgp-mpi-openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/pgp-mpi-openssl.c b/contrib/pgcrypto/pgp-mpi-openssl.c index c44e1935bd1..61ef6f3943e 100644 --- a/contrib/pgcrypto/pgp-mpi-openssl.c +++ b/contrib/pgcrypto/pgp-mpi-openssl.c @@ -26,9 +26,9 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi-openssl.c,v 1.1 2005/07/10 13:46:29 momjian Exp $ + * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi-openssl.c,v 1.2 2005/07/11 15:07:59 tgl Exp $ */ -#include <postgres.h> +#include "postgres.h" #include <openssl/bn.h> |