diff options
author | 2005-10-24 20:25:14 +0000 | |
---|---|---|
committer | 2005-10-24 20:25:14 +0000 | |
commit | 1fc6f07ad6038e9923b6c8e2bf2c4337706f1384 (patch) | |
tree | 59eb1a450bf46da021e52e1cfb15287cc47b6672 | |
parent | Conditionalize singler-step code on PTRACE. (diff) | |
download | wireguard-openbsd-1fc6f07ad6038e9923b6c8e2bf2c4337706f1384.tar.xz wireguard-openbsd-1fc6f07ad6038e9923b6c8e2bf2c4337706f1384.zip |
Partly backout. NOLIST, used in LISTs is probably interfering. requested by
deraadt@
-rw-r--r-- | sys/sys/queue.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/sys/queue.h b/sys/sys/queue.h index ed31d4ac564..5a17d679844 100644 --- a/sys/sys/queue.h +++ b/sys/sys/queue.h @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.h,v 1.28 2005/10/17 20:19:42 otto Exp $ */ +/* $OpenBSD: queue.h,v 1.29 2005/10/24 20:25:14 otto Exp $ */ /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ /* @@ -219,8 +219,6 @@ struct { \ (elm)->field.le_next->field.le_prev = \ (elm)->field.le_prev; \ *(elm)->field.le_prev = (elm)->field.le_next; \ - (elm)->field.le_prev = NULL; \ - (elm)->field.le_next = NULL; \ } while (0) #define LIST_REPLACE(elm, elm2, field) do { \ |