diff options
author | Damien Miller <djm@mindrot.org> | 2007-10-26 16:43:22 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2007-10-26 16:43:22 +1000 |
commit | 0b6a21d468e19702f3a9febdace803225ce2fbf7 (patch) | |
tree | d5d74627d8e8df2ccb1d5116e6f9c02d0988b993 /openbsd-compat | |
parent | 9aeef6b50d23a9f430b65c6f3454d14db0083832 (diff) | |
download | openssh-git-0b6a21d468e19702f3a9febdace803225ce2fbf7.tar.gz |
- otto@cvs.openbsd.org 2005/10/24 20:25:14
[openbsd-compat/sys-queue.h]
Partly backout. NOLIST, used in LISTs is probably interfering.
requested by deraadt@
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/sys-queue.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/openbsd-compat/sys-queue.h b/openbsd-compat/sys-queue.h index ee2ce30b..e5c5e2f9 100644 --- a/openbsd-compat/sys-queue.h +++ b/openbsd-compat/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 $ */ /* @@ -304,8 +304,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 { \ |