Re: pgsql: Move code for backend startup to separate file

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
Cc: pgsql-committers(at)lists(dot)postgresql(dot)org, peter(at)eisentraut(dot)org
Subject: Re: pgsql: Move code for backend startup to separate file
Date: 2024-04-16 00:40:16
Message-ID: Zh3I8ImuOhMF557w@paquier.xyz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On Mon, Apr 15, 2024 at 05:24:39PM +0900, Michael Paquier wrote:
> extern PGDLLIMPORT const char *progname;
>
> +extern bool LoadedSSL;
>
> This variable is missing a PGDLLIMPORT, it seems.
>
> aafc05de1bf5 has missed a second one with MyClientSocket. Both are
> declared in postmaster.h.

For now, I've fixed these two with 768ceeeaa127.
--
Michael

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2024-04-16 03:27:29 pgsql: xml2: Replace deprecated routines with recommended ones
Previous Message Michael Paquier 2024-04-16 00:39:02 pgsql: Add missing PGDLLIMPORT markings