aboutsummaryrefslogtreecommitdiff
path: root/apps/openssl/certhash_win.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/openssl/certhash_win.c')
-rw-r--r--apps/openssl/certhash_win.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/openssl/certhash_win.c b/apps/openssl/certhash_win.c
new file mode 100644
index 0000000..be57e2a
--- /dev/null
+++ b/apps/openssl/certhash_win.c
@@ -0,0 +1,13 @@
1/*
2 * Public domain
3 * certhash dummy implementation for platforms without symlinks
4 */
5
6#include <apps.h>
7
8int
9certhash_main(int argc, char **argv)
10{
11 fprintf(stderr, "certhash is not enabled on this platform\n");
12 return (1);
13}