diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-17 23:48:25 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-17 23:48:25 +0000 |
commit | 6a936502ac3ec1bc3b77ad4cf76ad76522f0e9a7 (patch) | |
tree | 08a4a7287add05c3799c8b1dd30146bce775e208 /lib/libssl | |
parent | 9e73f8a190b7f5132f5dbea798a4b7189adc5878 (diff) |
avoid sys/param.h; Jonas Termansen
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/d1_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/d1_lib.c b/lib/libssl/d1_lib.c index 0539ad42875..ff78d0cf3ae 100644 --- a/lib/libssl/d1_lib.c +++ b/lib/libssl/d1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_lib.c,v 1.23 2014/07/11 13:09:04 miod Exp $ */ +/* $OpenBSD: d1_lib.c,v 1.24 2014/07/17 23:48:24 deraadt Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -57,7 +57,7 @@ * */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> |