Fix compiler warnings regarding DEFAULT_PGSOCKET_DIR.
authorTatsuo Ishii <ishii@sraoss.co.jp>
Tue, 3 Oct 2023 01:46:46 +0000 (10:46 +0900)
committerTatsuo Ishii <ishii@sraoss.co.jp>
Tue, 3 Oct 2023 01:52:55 +0000 (10:52 +0900)
commit2fe31f6ad42830375090ad552ec78204a51b5fa2
treed92e482c0edbbe07dd7448d111a2238feaea9e02
parent4288b722201cdf43e513e21249f6ede74615576a
Fix compiler warnings regarding DEFAULT_PGSOCKET_DIR.

Commit 3bd6941f accidentally add "#include "pg_config_manual.h", which
should have been "#include parser/pg_config_manual.h".  This caused to
include parser/pg_config_manual.h and pg_config_manual.h, which caused
compiler warning:

../src/include/parser/pg_config_manual.h:227:0: warning: "DEFAULT_PGSOCKET_DIR" redefined [enabled by default]
 #define DEFAULT_PGSOCKET_DIR  "/tmp"

If DEFAULT_PGSOCKET_DIR value was different among these header files.

Reported by: Peng Bo.
src/include/pcp/libpcp_ext.h
src/protocol/pool_process_query.c