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

knsupdate: log error if unsupported command

parent 14038723
No related branches found
No related tags found
No related merge requests found
Pipeline #94479 passed
......@@ -1017,6 +1017,8 @@ int cmd_gsstsig(const char* lp, _unused_ knsupdate_params_t *params)
{
DBG("%s: lp='%s'\n", __func__, lp);
ERR("gsstsig not supported\n");
return KNOT_ENOTSUP;
}
......@@ -1024,6 +1026,8 @@ int cmd_oldgsstsig(const char* lp, _unused_ knsupdate_params_t *params)
{
DBG("%s: lp='%s'\n", __func__, lp);
ERR("oldgsstsig not supported\n");
return KNOT_ENOTSUP;
}
......@@ -1031,5 +1035,7 @@ int cmd_realm(const char* lp, _unused_ knsupdate_params_t *params)
{
DBG("%s: lp='%s'\n", __func__, lp);
ERR("realm not supported\n");
return KNOT_ENOTSUP;
}
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