diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
commit | b334612b8aee9f9a34378982d8938b201dfad323 (patch) | |
tree | a47c67522e7886c2aee179cbb260e47218c16d1d /src/include | |
parent | 877bf52cffe587d33556e6259f610eb932699706 (diff) | |
download | postgresql-b334612b8aee9f9a34378982d8938b201dfad323.tar.gz postgresql-b334612b8aee9f9a34378982d8938b201dfad323.zip |
Pre-beta2 mechanical code beautification.
Run pgindent and pgperltidy. It seems we're still some ways
away from all committers doing this automatically. Now that
we have a buildfarm animal that will whine about poorly-indented
code, we'll try to keep the tree more tidy.
Discussion: https://postgr.es/m/3156045.1687208823@sss.pgh.pa.us
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/backend_status.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/backend_status.h b/src/include/utils/backend_status.h index 16500d53b2a..77939a0aede 100644 --- a/src/include/utils/backend_status.h +++ b/src/include/utils/backend_status.h @@ -77,7 +77,7 @@ typedef struct PgBackendGSSStatus char gss_princ[NAMEDATALEN]; /* GSSAPI Principal used to auth */ bool gss_auth; /* If GSSAPI authentication was used */ bool gss_enc; /* If encryption is being used */ - bool gss_delegation; /* If credentials delegated */ + bool gss_delegation; /* If credentials delegated */ } PgBackendGSSStatus; |