1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Fix dumb typo in SECURITY LABEL error message.

Report by Peter Eisentraut.
This commit is contained in:
Robert Haas
2010-10-26 14:54:31 -04:00
parent 0c6293dd03
commit 3579a94d6a
2 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ ExecSecLabelStmt(SecLabelStmt *stmt)
if (label_provider_list == NIL)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("security label providers have been loaded")));
errmsg("no security label providers have been loaded")));
if (lnext(list_head(label_provider_list)) != NULL)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),