Merge pull request #1745 from stefanrueger/override-signature-check

Consult -F option when signature cannot be read
This commit is contained in:
Stefan Rueger
2024-04-13 12:35:08 +01:00
committed by GitHub

View File

@@ -1580,8 +1580,11 @@ skipopen:
}
}
pmsg_error("unable to read signature data, rc=%d\n", rc);
exitrc = 1;
goto main_exit;
if(!ovsigck) {
imsg_error("use -F to override this check\n");
exitrc = 1;
goto main_exit;
}
}
}