1 2 3 4 5 6 7 8 9 10 11 12 13
/* * Public domain * certhash dummy implementation for platforms without symlinks */ #include "apps.h" int certhash_main(int argc, char **argv) { fprintf(stderr, "certhash is not enabled on this platform\n"); return (1); }