Commit 945083b2 authored by Bruce Momjian's avatar Bruce Momjian

Fix return value and const declaration from commit 978f869b

This fixes the non-OpenSSL compile case.

Reported-by: buildfarm member sifaka

Backpatch-through: master
parent 978f869b
......@@ -19,7 +19,7 @@
#include "common/cipher.h"
static cipher_failure(void);
static void cipher_failure(void);
PgCipherCtx *
pg_cipher_ctx_create(int cipher, uint8 *key, int klen, bool enc)
......@@ -46,12 +46,12 @@ bool
pg_cipher_decrypt(PgCipherCtx *ctx, const unsigned char *ciphertext,
const int inlen, unsigned char *plaintext, int *outlen,
const unsigned char *iv, const int ivlen,
const unsigned char *intag, const int taglen)
unsigned char *intag, const int taglen)
{
cipher_failure();
}
static
static void
cipher_failure(void)
{
#ifndef FRONTEND
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment