From f1bba128929778c21168e84b8970f6623611dc6e Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Tue, 18 Sep 2007 11:36:55 +0000 Subject: API change! rc_strlist_add and friends now take char *** instead of char ** and return a pointer to the item added instead of the new list head. This is so we can easily tell if the item was successfully added or not instead of iterating through the list looking for it. list = rc_strlist_add (list, item); becomes rc_strlist_add (&list, item); --- ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index dbf33c45..35c7779f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,17 @@ # ChangeLog for Gentoo System Intialization ("rc") scripts # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2 + 18 Sep 2007; Roy Marples : + + API change! rc_strlist_add and friends now take char *** instead of + char ** and return a pointer to the item added instead of the new + list head. This is so we can easily tell if the item was successfully + added or not instead of iterating through the list looking for it. + + list = rc_strlist_add (list, item); + becomes + rc_strlist_add (&list, item); + 17 Sep 2007; Roy Marples : Document the preferance of wpa_supplicant, #192828. -- cgit v1.2.3