summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2020-06-07 13:29:52 +0000
committerflorian <florian@openbsd.org>2020-06-07 13:29:52 +0000
commit3f87ca5fafd2c54a4bc9dde7c8ddd7d658b64d9e (patch)
tree68ca6f12764d7b869d00e9c11eb68172a8b9a20f
parentSwap arguments of calloc(3). (diff)
downloadwireguard-openbsd-3f87ca5fafd2c54a4bc9dde7c8ddd7d658b64d9e.tar.xz
wireguard-openbsd-3f87ca5fafd2c54a4bc9dde7c8ddd7d658b64d9e.zip
whitespace
-rw-r--r--usr.sbin/acme-client/json.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/acme-client/json.c b/usr.sbin/acme-client/json.c
index 15ec57ea512..61d2631359f 100644
--- a/usr.sbin/acme-client/json.c
+++ b/usr.sbin/acme-client/json.c
@@ -1,4 +1,4 @@
-/* $Id: json.c,v 1.18 2020/06/07 13:28:17 florian Exp $ */
+/* $Id: json.c,v 1.19 2020/06/07 13:29:52 florian Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -481,7 +481,7 @@ json_parse_order(struct jsmnn *n, struct order *order)
}
return 1;
err:
- json_free_order(order);
+ json_free_order(order);
return 0;
}
@@ -507,7 +507,7 @@ json_free_order(struct order *order)
for(i = 0; i < order->authsz; i++)
free(order->auths[i]);
free(order->auths);
-
+
order->finalize = NULL;
order->auths = NULL;
order->authsz = 0;