X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=utils.h;h=baba9df62b6556bf136bce340190df7e3f3d2a6d;hp=43e2a22428d52774d7a130aab7509d629b30e3e8;hb=83ff4b94b044086d80b1e189e5601274bd5b4852;hpb=5df8137ebc5db2bc9c6e71b2d154a5f77679d9d8;ds=sidebyside diff --git a/utils.h b/utils.h index 43e2a22..baba9df 100644 --- a/utils.h +++ b/utils.h @@ -50,18 +50,6 @@ void info(const char *format, ...); p = list_empty(h) ? list_first_entry(h, typeof(*p), list) \ : list_entry(p->list.next, typeof(*p), list)) -static inline void -fw3_free_list(struct list_head *list) -{ - struct list_head *cur, *tmp; - - list_for_each_safe(cur, tmp, list) - { - list_del(cur); - free(cur); - } -} - #define fw3_is_family(p, f) \ (!p || (p)->family == FW3_FAMILY_ANY || (p)->family == f)