Add missing ifdef. This fixes build with NO_OPENSSL.

Reported by:	Pawel Tyll <ptyll@nitronet.pl>
Approved by:	pjd (mentor)
MFC after:	1 week
This commit is contained in:
Mikolaj Golub 2011-04-26 19:52:21 +00:00
parent 4309793b64
commit cfd2b3fb51
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=221078

View file

@ -69,7 +69,9 @@ struct hast_pipe_stage {
static struct hast_pipe_stage pipeline[] = {
{ "compression", compression_send, compression_recv },
#ifdef HAVE_CRYPTO
{ "checksum", checksum_send, checksum_recv }
#endif
};
/*