]> granicus.if.org Git - postgresql/commitdiff
Fix typo in elog message.
authorRobert Haas <rhaas@postgresql.org>
Tue, 7 Oct 2014 04:08:59 +0000 (00:08 -0400)
committerRobert Haas <rhaas@postgresql.org>
Tue, 7 Oct 2014 04:08:59 +0000 (00:08 -0400)
src/backend/commands/policy.c

index 8e6393c8c0e7a55d3f9b2995cf2dc196a6887e18..36275394306d7c39fa6d3b784d9cae605c84b0da 100644 (file)
@@ -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;
 }