xref: /openbsd-src/regress/usr.sbin/rpki-client/constraints-dummy.c (revision 2d59ea13a6eb6d5e2f068917f6b4cf9b5b34780f)
1 /*
2  * Public domain
3  * dummy shim for some tests.
4  */
5 
6 #include "extern.h"
7 
8 int
constraints_validate(const char * fn,const struct cert * cert)9 constraints_validate(const char *fn, const struct cert *cert)
10 {
11 	return 1;
12 }
13