diff --git a/openbsd-compat/sha1.c b/openbsd-compat/sha1.c index c616778e2..07e37be72 100644 --- a/openbsd-compat/sha1.c +++ b/openbsd-compat/sha1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.c,v 1.24 2015/01/15 13:05:59 millert Exp $ */ +/* $OpenBSD: sha1.c,v 1.25 2015/01/16 16:48:51 deraadt Exp $ */ /* * SHA-1 in C @@ -18,7 +18,7 @@ #ifndef WITH_OPENSSL -#include +#include #include #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))