From: Robert Haas Date: Tue, 7 Oct 2014 04:08:59 +0000 (-0400) Subject: Fix typo in elog message. X-Git-Tag: REL9_5_ALPHA1~1385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c421efd21330f2e5bed253b4a53d7ea5e084edf6;p=postgresql Fix typo in elog message. --- diff --git a/src/backend/commands/policy.c b/src/backend/commands/policy.c index 8e6393c8c0..3627539430 100644 --- a/src/backend/commands/policy.c +++ b/src/backend/commands/policy.c @@ -121,7 +121,7 @@ parse_row_security_command(const char *cmd_name) else if (strcmp(cmd_name, "delete") == 0) cmd = ACL_DELETE_CHR; else - elog(ERROR, "unregonized command"); + elog(ERROR, "unrecognized command"); return cmd; }