summaryrefslogtreecommitdiffstats
path: root/usr.sbin/acme-client
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2019-06-08 10:38:03 +0000
committerflorian <florian@openbsd.org>2019-06-08 10:38:03 +0000
commita61105ff14c7e23de8425827169fcf63ccf336dc (patch)
tree50ac208e71d0d4172b2774fc54d45ca9e71511d1 /usr.sbin/acme-client
parentdisambiguate memory extent conflicts for membars and rom addresses (diff)
downloadwireguard-openbsd-a61105ff14c7e23de8425827169fcf63ccf336dc.tar.xz
wireguard-openbsd-a61105ff14c7e23de8425827169fcf63ccf336dc.zip
remove unused variable
Diffstat (limited to 'usr.sbin/acme-client')
-rw-r--r--usr.sbin/acme-client/netproc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/acme-client/netproc.c b/usr.sbin/acme-client/netproc.c
index ddcf1ae79f2..21316cc21db 100644
--- a/usr.sbin/acme-client/netproc.c
+++ b/usr.sbin/acme-client/netproc.c
@@ -1,4 +1,4 @@
-/* $Id: netproc.c,v 1.23 2019/06/07 08:07:52 florian Exp $ */
+/* $Id: netproc.c,v 1.24 2019/06/08 10:38:03 florian Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -664,7 +664,7 @@ netproc(int kfd, int afd, int Cfd, int cfd, int dfd, int rfd,
{
int rc = 0;
size_t i;
- char *cert = NULL, *thumb = NULL, *url = NULL, *token = NULL;
+ char *cert = NULL, *thumb = NULL, *url = NULL;
struct conn c;
struct capaths paths;
struct order order;
@@ -883,7 +883,6 @@ out:
free(cert);
free(url);
free(thumb);
- free(token);
free(c.kid);
free(c.buf.buf);
if (chngs != NULL)