libreSSL/apps/openssl/certhash_win.c
2015-10-18 10:48:17 -05:00

14 lines
230 B
C

/*
* 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);
}