From: Arran Cudbard-Bell Date: Thu, 14 Sep 2017 16:33:05 +0000 (+0700) Subject: Happily not needed X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c305c915b1d996cabe54bb69e93f820720fb3bda;p=thirdparty%2Ffreeradius-server.git Happily not needed ...as the new cursor API was designed somewhat more than the original, and doesn't require dumb hacks. --- diff --git a/src/include/cursor.h b/src/include/cursor.h index d7b49a89c11..ad8d4c7f8c6 100644 --- a/src/include/cursor.h +++ b/src/include/cursor.h @@ -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.