1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Rename pg_dump --no-security-label to --no-security-labels

Other similar options also use the plural form.
This commit is contained in:
Peter Eisentraut
2011-05-19 23:20:11 +03:00
parent fcd4575905
commit c8e0c32119
8 changed files with 23 additions and 23 deletions

View File

@ -2352,7 +2352,7 @@ _tocEntryRequired(TocEntry *te, RestoreOptions *ropt, bool include_acls)
return 0;
/* If it's security labels, maybe ignore it */
if (ropt->skip_seclabel && strcmp(te->desc, "SECURITY LABEL") == 0)
if (ropt->no_security_labels && strcmp(te->desc, "SECURITY LABEL") == 0)
return 0;
/* Ignore DATABASE entry unless we should create it */