diff options
author | jsing <> | 2024-05-06 14:38:20 +0000 |
---|---|---|
committer | jsing <> | 2024-05-06 14:38:20 +0000 |
commit | fc602bd5ac38ee7034363f1bb0b799a0453146dd (patch) | |
tree | 909eae372ad4f8e88694e59dee07abeb4ba9e068 /src | |
parent | c7fb1be8a79c3abc8487af04771cbadd94bffedd (diff) | |
download | openbsd-fc602bd5ac38ee7034363f1bb0b799a0453146dd.tar.gz openbsd-fc602bd5ac38ee7034363f1bb0b799a0453146dd.tar.bz2 openbsd-fc602bd5ac38ee7034363f1bb0b799a0453146dd.zip |
Fix function wrapping.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/lhash/lhash.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/lhash/lhash.c b/src/lib/libcrypto/lhash/lhash.c index 2fb3c4ca59..ded0d00dde 100644 --- a/src/lib/libcrypto/lhash/lhash.c +++ b/src/lib/libcrypto/lhash/lhash.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: lhash.c,v 1.23 2024/05/06 14:36:05 jsing Exp $ */ | 1 | /* $OpenBSD: lhash.c,v 1.24 2024/05/06 14:38:20 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -399,7 +399,8 @@ contract(_LHASH *lh) | |||
399 | } | 399 | } |
400 | } | 400 | } |
401 | 401 | ||
402 | static LHASH_NODE **getrn(_LHASH *lh, const void *data, unsigned long *rhash) | 402 | static LHASH_NODE ** |
403 | getrn(_LHASH *lh, const void *data, unsigned long *rhash) | ||
403 | { | 404 | { |
404 | LHASH_NODE **ret, *n1; | 405 | LHASH_NODE **ret, *n1; |
405 | unsigned long hash, nn; | 406 | unsigned long hash, nn; |