diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-06-08 09:59:02 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-06-08 09:59:02 +0900 |
commit | 35b2d4bc0eb5d61a2a294ccb6b2e4abdad307604 (patch) | |
tree | ab2ec13b3204c80f748f42f44a3c8ebd68f13b68 /src/backend/libpq/be-secure-gssapi.c | |
parent | 84d4de97e8d14469974eb488730a13f942aa787a (diff) | |
download | postgresql-35b2d4bc0eb5d61a2a294ccb6b2e4abdad307604.tar.gz postgresql-35b2d4bc0eb5d61a2a294ccb6b2e4abdad307604.zip |
Move be-gssapi-common.h into src/include/libpq/
The file has been introduced in src/backend/libpq/ as of b0b39f72, but
all backend-side headers of libpq are located in src/include/libpq/.
Note that the identification path on top of the file referred to
src/include/libpq/ from the start.
Author: Michael Paquier
Reviewed-by: Stephen Frost
Discussion: https://postgr.es/m/20190607043415.GE1736@paquier.xyz
Diffstat (limited to 'src/backend/libpq/be-secure-gssapi.c')
-rw-r--r-- | src/backend/libpq/be-secure-gssapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/libpq/be-secure-gssapi.c b/src/backend/libpq/be-secure-gssapi.c index b345eae62ad..1673b103158 100644 --- a/src/backend/libpq/be-secure-gssapi.c +++ b/src/backend/libpq/be-secure-gssapi.c @@ -16,8 +16,8 @@ #include <unistd.h> -#include "be-gssapi-common.h" #include "libpq/auth.h" +#include "libpq/be-gssapi-common.h" #include "libpq/libpq.h" #include "libpq/libpq-be.h" #include "libpq/pqformat.h" |