--- src/usr.bin/make/lst.lib/Attic/lstAppend.c 2004/12/10 19:22:25 1.6 +++ src/usr.bin/make/lst.lib/Attic/lstAppend.c 2004/12/16 23:24:10 1.7 @@ -87,11 +87,7 @@ Lst_Append(Lst list, LstNode ln, void *d nLNode->useCount = nLNode->flags = 0; if (ln == NULL) { - if (list->isCirc) { - nLNode->nextPtr = nLNode->prevPtr = nLNode; - } else { - nLNode->nextPtr = nLNode->prevPtr = NULL; - } + nLNode->nextPtr = nLNode->prevPtr = NULL; list->firstPtr = list->lastPtr = nLNode; } else { nLNode->prevPtr = ln;