summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/blf.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-07-11 15:07:59 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-07-11 15:07:59 +0000
commite997758cb67526549b56a89658f7a42104716cf0 (patch)
tree25704e6e929bc209281b1859917be9935e4007b0 /contrib/pgcrypto/blf.c
parent3c52d17fa66ab1ac447fcc052df9dde470d5b195 (diff)
downloadpostgresql-e997758cb67526549b56a89658f7a42104716cf0.tar.gz
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/blf.c')
-rw-r--r--contrib/pgcrypto/blf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/pgcrypto/blf.c b/contrib/pgcrypto/blf.c
index a1af7479c2..c2e83f3078 100644
--- a/contrib/pgcrypto/blf.c
+++ b/contrib/pgcrypto/blf.c
@@ -31,6 +31,8 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $PostgreSQL: pgsql/contrib/pgcrypto/blf.c,v 1.7 2005/07/11 15:07:59 tgl Exp $
*/
/*
@@ -40,9 +42,9 @@
* Bruce Schneier.
*/
-#include <postgres.h>
-#include "px.h"
+#include "postgres.h"
+#include "px.h"
#include "blf.h"
/* Function for Feistel Networks */