diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-06-29 11:14:21 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-06-29 11:17:37 +0900 |
commit | c0faa727507ed34db0d02769d21bbaaf9605e2e4 (patch) | |
tree | d0e6876616a9bc247866fc639b36beecfd556919 | |
parent | 23cccb17fe0bbb5df86780da5c346cc060c21421 (diff) | |
download | postgresql-c0faa727507ed34db0d02769d21bbaaf9605e2e4.tar.gz postgresql-c0faa727507ed34db0d02769d21bbaaf9605e2e4.zip |
Remove unnecessary header from be-secure-gssapi.c
libpq/libpq-be.h is included by libpq/libpq.h so there is no need to
explicitly include it separately.
Author: Daniel Gustafsson
Reviewed-by: Julien Rouhaud
Discussion: https://postgr.es/m/A4852E46-9ED1-4861-A23B-22A83E34A084@yesql.se
-rw-r--r-- | src/backend/libpq/be-secure-gssapi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/libpq/be-secure-gssapi.c b/src/backend/libpq/be-secure-gssapi.c index ba8c0cd0f05..92f39c113a7 100644 --- a/src/backend/libpq/be-secure-gssapi.c +++ b/src/backend/libpq/be-secure-gssapi.c @@ -19,7 +19,6 @@ #include "libpq/auth.h" #include "libpq/be-gssapi-common.h" #include "libpq/libpq.h" -#include "libpq/libpq-be.h" #include "libpq/pqformat.h" #include "miscadmin.h" #include "pgstat.h" |