artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42f3108
)
Missing void in function definition
author
tb
<tb@openbsd.org>
Fri, 12 Mar 2021 15:55:26 +0000
(15:55 +0000)
committer
tb
<tb@openbsd.org>
Fri, 12 Mar 2021 15:55:26 +0000
(15:55 +0000)
ok jsing
lib/libcrypto/x509/x509_constraints.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/x509/x509_constraints.c
b/lib/libcrypto/x509/x509_constraints.c
index
2d55e13
..
2557dd0
100644
(file)
--- a/
lib/libcrypto/x509/x509_constraints.c
+++ b/
lib/libcrypto/x509/x509_constraints.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: x509_constraints.c,v 1.1
3 2021/03/12 15:53:38
tb Exp $ */
+/* $OpenBSD: x509_constraints.c,v 1.1
4 2021/03/12 15:55:26
tb Exp $ */
/*
* Copyright (c) 2020 Bob Beck <beck@openbsd.org>
*
@@
-36,7
+36,7
@@
#define DOMAIN_PART_MAX_LEN 255
struct x509_constraints_name *
-x509_constraints_name_new()
+x509_constraints_name_new(
void
)
{
return (calloc(1, sizeof(struct x509_constraints_name)));
}