2015-02-15 01:51:44 +01:00
|
|
|
/*
|
|
|
|
* Public domain
|
|
|
|
* certhash dummy implementation for platforms without symlinks
|
|
|
|
*/
|
|
|
|
|
2015-10-18 17:48:17 +02:00
|
|
|
#include "apps.h"
|
2015-02-15 01:51:44 +01:00
|
|
|
|
|
|
|
int
|
|
|
|
certhash_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "certhash is not enabled on this platform\n");
|
|
|
|
return (1);
|
|
|
|
}
|