aboutsummaryrefslogtreecommitdiff
path: root/apps/openssl/certhash_win.c
blob: 8238ff7c95afd5b6167c88fe6331fb320c896e85 (plain)
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);
}