summaryrefslogtreecommitdiffstats
path: root/usr.sbin/iscsictl
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2017-01-05 13:53:09 +0000
committerkrw <krw@openbsd.org>2017-01-05 13:53:09 +0000
commit46bca67b3afccd3408e91051f21093eb9ea0522a (patch)
treee2329f09474909da5e59097583649ef3f445e466 /usr.sbin/iscsictl
parentAvoid a side-channel cache-timing attack that can leak the ECDSA private (diff)
downloadwireguard-openbsd-46bca67b3afccd3408e91051f21093eb9ea0522a.tar.xz
wireguard-openbsd-46bca67b3afccd3408e91051f21093eb9ea0522a.zip
Replace hand-rolled for(;;) emptying of 'symhead' TAILQ with more
modern TAILQ_FOREACH_SAFE(). No intentional functional change. ok millert@ bluhm@ gilles@
Diffstat (limited to 'usr.sbin/iscsictl')
-rw-r--r--usr.sbin/iscsictl/parse.y5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/iscsictl/parse.y b/usr.sbin/iscsictl/parse.y
index 889c8295ba7..699ce7a298e 100644
--- a/usr.sbin/iscsictl/parse.y
+++ b/usr.sbin/iscsictl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.9 2017/01/05 12:42:18 krw Exp $ */
+/* $OpenBSD: parse.y,v 1.10 2017/01/05 13:53:09 krw Exp $ */
/*
* Copyright (c) 2010 David Gwynne <dlg@openbsd.org>
@@ -695,8 +695,7 @@ parse_config(char *filename)
popfile();
/* Free macros and check which have not been used. */
- for (sym = TAILQ_FIRST(&symhead); sym != NULL; sym = next) {
- next = TAILQ_NEXT(sym, entry);
+ TAILQ_FOREACH_SAFE(sym, &symhead, entry, next) {
if (!sym->persist) {
free(sym->nam);
free(sym->val);