summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/conf/conf_def.c
diff options
context:
space:
mode:
authortb <>2024-08-24 12:08:49 +0000
committertb <>2024-08-24 12:08:49 +0000
commitbcb489c7f81f8e3a80c16b77563aec1052e00dba (patch)
tree1ff617d0d68da8cb252bb959edae2d9496bf5b89 /src/lib/libcrypto/conf/conf_def.c
parent83c6256f11393f0ba1e234a9e184e68060743234 (diff)
downloadopenbsd-bcb489c7f81f8e3a80c16b77563aec1052e00dba.tar.gz
openbsd-bcb489c7f81f8e3a80c16b77563aec1052e00dba.tar.bz2
openbsd-bcb489c7f81f8e3a80c16b77563aec1052e00dba.zip
conf_def.c: add two trailing commas
Diffstat (limited to 'src/lib/libcrypto/conf/conf_def.c')
-rw-r--r--src/lib/libcrypto/conf/conf_def.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/conf/conf_def.c b/src/lib/libcrypto/conf/conf_def.c
index de1212ad37..ef762b88e7 100644
--- a/src/lib/libcrypto/conf/conf_def.c
+++ b/src/lib/libcrypto/conf/conf_def.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: conf_def.c,v 1.35 2024/08/18 17:50:10 tb Exp $ */ 1/* $OpenBSD: conf_def.c,v 1.36 2024/08/24 12:08:49 tb 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 *
@@ -658,7 +658,7 @@ static CONF_METHOD default_method = {
658 .dump = def_dump, 658 .dump = def_dump,
659 .is_number = def_is_number, 659 .is_number = def_is_number,
660 .to_int = def_to_int, 660 .to_int = def_to_int,
661 .load = def_load 661 .load = def_load,
662}; 662};
663 663
664static CONF_METHOD WIN32_method = { 664static CONF_METHOD WIN32_method = {
@@ -671,7 +671,7 @@ static CONF_METHOD WIN32_method = {
671 def_dump, 671 def_dump,
672 def_is_number, 672 def_is_number,
673 def_to_int, 673 def_to_int,
674 def_load 674 def_load,
675}; 675};
676 676
677CONF_METHOD * 677CONF_METHOD *