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