diff options
| author | Tom Lane | 2023-06-20 13:50:43 +0000 |
|---|---|---|
| committer | Tom Lane | 2023-06-20 13:50:43 +0000 |
| commit | b334612b8aee9f9a34378982d8938b201dfad323 (patch) | |
| tree | a47c67522e7886c2aee179cbb260e47218c16d1d /src/backend/libpq | |
| parent | 877bf52cffe587d33556e6259f610eb932699706 (diff) | |
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/backend/libpq')
| -rw-r--r-- | src/backend/libpq/hba.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index 1ef113649fb..f89f138f3c0 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -2693,9 +2693,8 @@ load_hba(void) if (!ok) { /* - * File contained one or more errors, so bail out. - * MemoryContextDelete is enough to clean up everything, including - * regexes. + * File contained one or more errors, so bail out. MemoryContextDelete + * is enough to clean up everything, including regexes. */ MemoryContextDelete(hbacxt); return false; @@ -3057,9 +3056,8 @@ load_ident(void) if (!ok) { /* - * File contained one or more errors, so bail out. - * MemoryContextDelete is enough to clean up everything, including - * regexes. + * File contained one or more errors, so bail out. MemoryContextDelete + * is enough to clean up everything, including regexes. */ MemoryContextDelete(ident_context); return false; |
