]> granicus.if.org Git - postgresql/commitdiff
Move be-gssapi-common.h into src/include/libpq/
authorMichael Paquier <michael@paquier.xyz>
Sat, 8 Jun 2019 00:59:02 +0000 (09:59 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sat, 8 Jun 2019 00:59:02 +0000 (09:59 +0900)
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

src/backend/libpq/auth.c
src/backend/libpq/be-gssapi-common.c
src/backend/libpq/be-secure-gssapi.c
src/include/libpq/be-gssapi-common.h [moved from src/backend/libpq/be-gssapi-common.h with 100% similarity]

index a7763f3f605885604c0c8bc15f373e2ac218fb10..931058695ac0ef4696a05eb29c081e3572d87c69 100644 (file)
@@ -173,7 +173,7 @@ bool                pg_krb_caseins_users;
  *----------------------------------------------------------------
  */
 #ifdef ENABLE_GSS
-#include "be-gssapi-common.h"
+#include "libpq/be-gssapi-common.h"
 
 static int     pg_GSS_checkauth(Port *port);
 static int     pg_GSS_recvauth(Port *port);
index e285a7061e488fedb153058e01b5863d15d7f0e0..edb34026d41f8592ca61423bb5a5d74d2f8e84b6 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "postgres.h"
 
-#include "be-gssapi-common.h"
+#include "libpq/be-gssapi-common.h"
 
 /*
  * Helper function for getting all strings of a GSSAPI error (of specified
index b345eae62ada586cb712d8277f7692e3fde7d4c5..1673b10315809e916dee5db7b602393665a809ba 100644 (file)
@@ -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"