summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2024-08-24 12:08:49 +0000
committertb <>2024-08-24 12:08:49 +0000
commit5370de00d1cbbce4a065df309335d51d0ba4af05 (patch)
tree1ff617d0d68da8cb252bb959edae2d9496bf5b89
parenta906cb108539dddbdfa74531c1c980f9a4f9e912 (diff)
downloadopenbsd-5370de00d1cbbce4a065df309335d51d0ba4af05.tar.gz
openbsd-5370de00d1cbbce4a065df309335d51d0ba4af05.tar.bz2
openbsd-5370de00d1cbbce4a065df309335d51d0ba4af05.zip
conf_def.c: add two trailing commas
-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 *