1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Fix typo in elog message.

This commit is contained in:
Robert Haas
2014-10-07 00:08:59 -04:00
parent 55bfdd1cfd
commit c421efd213

View 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;
}