]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Happily not needed
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 14 Sep 2017 16:33:05 +0000 (23:33 +0700)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 14 Sep 2017 16:33:05 +0000 (23:33 +0700)
...as the new cursor API was designed somewhat more than the original, and doesn't require dumb hacks.

src/include/cursor.h

index d7b49a89c11ecffc0519ab63b7525b8dd144271c..ad8d4c7f8c69230716942594b98255671568f56b 100644 (file)
@@ -44,7 +44,6 @@ typedef struct fr_cursor_s {
        void                    *tail;          //!< Used for efficient fr_cursor_append.
        void                    *current;       //!< The current item in the linked list.
        void                    *prev;          //!< The previous item in the linked list.
-       void                    *iter_prev;     //!< Iterator's previous item.  Only set if iter != NULL.
 
        size_t                  offset;         //!< Where the next ptr is in the item struct.
        fr_cursor_iter_t        iter;           //!< Iterator function.