Dead code removal: #if 0 conf, dso, pqueue, threads
[openssl.git] / crypto / pqueue / pqueue.c
index 06a1b8d7cca06a29d4d1412364d01f51106ec73e..675ac60dbaf83e7c772766af63619295009e8660 100644 (file)
@@ -179,13 +179,6 @@ pitem *pqueue_find(pqueue_s *pq, unsigned char *prio64be)
     if (!found)
         return NULL;
 
-#if 0                           /* find works in peek mode */
-    if (prev == NULL)
-        pq->items = next->next;
-    else
-        prev->next = next->next;
-#endif
-
     return found;
 }