Re: [PATCH 1/3] MINOR: add list_append_word function

2016-05-13 Thread Willy Tarreau
I've merged all the series, thank you Maxime! Willy

[PATCH 1/3] MINOR: add list_append_word function

2016-05-13 Thread Maxime de Roucy
int list_append_word(struct list *li, const char *str, char **err) Append a copy of string (inside a wordlist) at the end of the list . The caller is responsible for freeing the and copy memory area using free(). On failure : return 0 and filled with an error message. ---