On Thu, Oct 17, 2024 at 02:24:33PM +0200, Daniel Gustafsson wrote:
> > On 17 Oct 2024, at 04:45, Bruce Momjian wrote:
>
> > I looked at this and decided the GUC section was illogical, so I just
> > moved the variables up into the be-secure.c section. Patch attached.
>
> No objections.
Patch ap
> On 17 Oct 2024, at 04:45, Bruce Momjian wrote:
> I looked at this and decided the GUC section was illogical, so I just
> moved the variables up into the be-secure.c section. Patch attached.
No objections.
--
Daniel Gustafsson
On Fri, May 10, 2024 at 11:14:51AM -0700, David Zhang wrote:
>
> > It looks like this wording "prototypes for functions in" is used many
> > times in src/include/, in many cases equally inaccurately, so I would
> > suggest creating a more comprehensive patch for this.
>
> I noticed this "prototyp
It looks like this wording "prototypes for functions in" is used many
times in src/include/, in many cases equally inaccurately, so I would
suggest creating a more comprehensive patch for this.
I noticed this "prototypes for functions in" in many header files and
briefly checked them. It ki
On 04.05.24 00:29, David Zhang wrote:
On 2024-05-03 4:53 a.m., Daniel Gustafsson wrote:
On 3 May 2024, at 13:48, Peter Eisentraut wrote:
Maybe it's easier if we just replaced
prototypes for functions in xxx.c
with
declarations for xxx.c
throughout src/include/libpq/libpq.h.
+1
+1
On 2024-05-03 4:53 a.m., Daniel Gustafsson wrote:
On 3 May 2024, at 13:48, Peter Eisentraut wrote:
Maybe it's easier if we just replaced
prototypes for functions in xxx.c
with
declarations for xxx.c
throughout src/include/libpq/libpq.h.
+1
+1
--
Daniel Gustafsson
David
> On 3 May 2024, at 13:48, Peter Eisentraut wrote:
> Maybe it's easier if we just replaced
>
>prototypes for functions in xxx.c
>
> with
>
>declarations for xxx.c
>
> throughout src/include/libpq/libpq.h.
+1
--
Daniel Gustafsson
On 03.05.24 00:37, David Zhang wrote:
Hi Hackers,
There is a comment like below in src/include/libpq/libpq.h,
/*
* prototypes for functions in be-secure.c
*/
extern PGDLLIMPORT char *ssl_library;
extern PGDLLIMPORT char *ssl_cert_file;
...
However, 'ssl_library', 'ssl_cert_file' and t
Hi Hackers,
There is a comment like below in src/include/libpq/libpq.h,
/*
* prototypes for functions in be-secure.c
*/
extern PGDLLIMPORT char *ssl_library;
extern PGDLLIMPORT char *ssl_cert_file;
...
However, 'ssl_library', 'ssl_cert_file' and the rest are global
parameter settings, no