summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbcook <>2014-07-08 14:17:38 +0000
committerbcook <>2014-07-08 14:17:38 +0000
commitb2d80867358da87df25fb40529dfcb81a251a32d (patch)
tree0e8d57ad1f461254ac750a25394efe3820359399
parente3a570db199e43444bc8fdcb77b4a9871580d294 (diff)
downloadopenbsd-b2d80867358da87df25fb40529dfcb81a251a32d.tar.gz
openbsd-b2d80867358da87df25fb40529dfcb81a251a32d.tar.bz2
openbsd-b2d80867358da87df25fb40529dfcb81a251a32d.zip
string.h is the correct file, not strings.h
ok beck@ jsing@
-rw-r--r--src/regress/lib/libcrypto/bio/biotest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/bio/biotest.c b/src/regress/lib/libcrypto/bio/biotest.c
index c6d38eb5b1..75dbf8c4fe 100644
--- a/src/regress/lib/libcrypto/bio/biotest.c
+++ b/src/regress/lib/libcrypto/bio/biotest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: biotest.c,v 1.2 2014/06/22 16:57:34 jsing Exp $ */ 1/* $OpenBSD: biotest.c,v 1.3 2014/07/08 14:17:38 bcook Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -18,7 +18,7 @@
18#include <sys/types.h> 18#include <sys/types.h>
19 19
20#include <stdlib.h> 20#include <stdlib.h>
21#include <strings.h> 21#include <string.h>
22 22
23#include <netinet/in.h> 23#include <netinet/in.h>
24 24