diff options
| author | Alvaro Herrera | 2019-12-24 15:37:13 +0000 |
|---|---|---|
| committer | Alvaro Herrera | 2019-12-24 15:44:12 +0000 |
| commit | c4dcd9144ba64946c9f9466748bdb2c51719c8a3 (patch) | |
| tree | f0c19d717fa5c6a61d5de600d9720234e460041a /src/backend/libpq/hba.c | |
| parent | cce64a51cabc1e59d202d95bb0b92ed22bac73cf (diff) | |
Avoid splitting C string literals with \-newline
Using \ is unnecessary and ugly, so remove that. While at it, stitch
the literals back into a single line: we've long discouraged splitting
error message literals even when they go past the 80 chars line limit,
to improve greppability.
Leave contrib/tablefunc alone.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/libpq/hba.c')
| -rw-r--r-- | src/backend/libpq/hba.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index 9989904769c..b6de92783a5 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -2667,8 +2667,7 @@ pg_hba_file_rules(PG_FUNCTION_ARGS) if (!(rsi->allowedModes & SFRM_Materialize)) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("materialize mode required, but it is not " \ - "allowed in this context"))); + errmsg("materialize mode required, but it is not allowed in this context"))); rsi->returnMode = SFRM_Materialize; |
