diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-08-24 12:08:50 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-08-24 12:08:50 +0000 |
commit | 5224ccc6610607091d1227d38e2a12193c38969d (patch) | |
tree | 052823ba82f5e311c916f578e7bd79f35df52058 | |
parent | 8335529985a3b34a7e70be747752423b90093daf (diff) |
conf_def.c: add two trailing commas
-rw-r--r-- | lib/libcrypto/conf/conf_def.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/conf/conf_def.c b/lib/libcrypto/conf/conf_def.c index de1212ad376..ef762b88e73 100644 --- a/lib/libcrypto/conf/conf_def.c +++ b/lib/libcrypto/conf/conf_def.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf_def.c,v 1.35 2024/08/18 17:50:10 tb Exp $ */ +/* $OpenBSD: conf_def.c,v 1.36 2024/08/24 12:08:49 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -658,7 +658,7 @@ static CONF_METHOD default_method = { .dump = def_dump, .is_number = def_is_number, .to_int = def_to_int, - .load = def_load + .load = def_load, }; static CONF_METHOD WIN32_method = { @@ -671,7 +671,7 @@ static CONF_METHOD WIN32_method = { def_dump, def_is_number, def_to_int, - def_load + def_load, }; CONF_METHOD * |