freebsd-ports/mail/nullmailer/files/patch-lib-list.h
Clive Lin b8e9973394 o Upgrade to release 1.00.
o Bump PORTEPOCH since pkg_version thinks differently.
o Patch nullmailer-send.8 to indicate SMTP authentication is supported
  as well.
2005-03-05 03:46:18 +00:00

13 lines
381 B
C

--- lib/list.h~ Sat Mar 5 01:16:28 2005
+++ lib/list.h Sat Mar 5 01:13:35 2005
@@ -18,8 +18,8 @@
typedef list_node<T> node;
typedef list_iterator<T> iter;
typedef const_list_iterator<T> const_iter;
- friend class iter;
- friend class const_iter;
+ friend class list_iterator<T>;;
+ friend class const_list_iterator<T>;;
list()
: head(0), tail(0), cnt(0)