From 125bb6cee4a70276c9342417a0ccd67f6c38723e Mon Sep 17 00:00:00 2001
From: Neil Conway <neilc@samurai.com>
Date: Tue, 5 Oct 2004 00:14:45 +0000
Subject: [PATCH] Pickup fix from upstream OpenBSD sources: mark a read-only
 local array as "static" to reduce size of generated code slightly.

---
 contrib/pgcrypto/blf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/pgcrypto/blf.c b/contrib/pgcrypto/blf.c
index da2047b6cf..a1af7479c2 100644
--- a/contrib/pgcrypto/blf.c
+++ b/contrib/pgcrypto/blf.c
@@ -126,7 +126,7 @@ Blowfish_initstate(blf_ctx * c)
 
 /* P-box and S-box tables initialized with digits of Pi */
 
-	const blf_ctx initstate =
+	static const blf_ctx initstate =
 
 	{{
 			{
-- 
2.40.0