]> granicus.if.org Git - pgbouncer/commitdiff
Improve the hba.conf parsing issue warning
authorPetr Jelinek <pjmodos@pjmodos.net>
Sat, 4 Nov 2017 15:18:20 +0000 (16:18 +0100)
committerPetr Jelinek <pjmodos@pjmodos.net>
Sat, 4 Nov 2017 15:18:20 +0000 (16:18 +0100)
This was added by 4f3dfc9, the wording was no ideal.

src/hba.c

index 8439ccf459f696c0cff575d05dab5f140ae56b06..769812e6cf9e549683b4f0e94ef6b2b6b517d9c7 100644 (file)
--- a/src/hba.c
+++ b/src/hba.c
@@ -635,7 +635,7 @@ struct HBA *hba_load_rules(const char *fn)
                parse_from_string(&tp, ln);
                if (!parse_line(hba, &tp, linenr, fn)) {
                        /* Tell the admin where to look for the problem. */
-                       log_warning("problem in hba config LINE %d", linenr);
+                       log_warning("could not parse hba config line %d", linenr);
                        /* Ignore line, but parse to the end. */
                        continue;
                }