Skip to content
Snippets Groups Projects
Commit a5b5b6ae authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Added NOTSIG error code.

parent 973ea22f
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@ const error_table_t knot_error_msgs[] = {
{KNOT_ECNAME, "CNAME loop found in zone."},
{KNOT_ENODIFF, "Cannot create zone diff."},
{KNOT_EDSDIGESTLEN, "DS digest length does not match digest type."},
{KNOT_ENOTSIG, "expected a TSIG or SIG(0)" },
/* Zone file loader errors. */
{FLOADER_EFSTAT, "Fstat error!"},
......
......@@ -84,6 +84,7 @@ enum knot_error {
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_ENOTSIG, /*!< expected a TSIG or SIG(0) */
/* 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