Skip to content
Snippets Groups Projects
Commit e91d3c7e authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Merge fix - add missing comma

parent 03b18d88
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ const error_table_t knot_error_msgs[] = {
{KNOT_EIXFRSPACE, "IXFR reply did not fit in."},
{KNOT_ECNAME, "CNAME loop found in zone."},
{KNOT_ENODIFF, "Cannot create zone diff."},
{KNOT_EDSDIGESTLEN, "DS digest length does not match digest type." },
{KNOT_EDSDIGESTLEN, "DS digest length does not match digest type."},
/* Zone file loader errors. */
{FLOADER_EFSTAT, "Fstat error!"},
......
......@@ -83,7 +83,7 @@ enum knot_error {
KNOT_EIXFRSPACE, /*!< IXFR reply did not fit in. */
KNOT_ECNAME, /*!< CNAME loop found in zone. */
KNOT_ENODIFF, /*!< No zone diff can be created. */
KNOT_EDSDIGESTLEN /*!< DS digest length does not match digest type. */
KNOT_EDSDIGESTLEN, /*!< DS digest length does not match digest type. */
/* Zone file loader errors. */
FLOADER_EFSTAT,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment