From 672af8808c0e7c15f330b401482f9271c2eb3fa6 Mon Sep 17 00:00:00 2001 From: cy Date: Fri, 19 Jul 2013 05:41:57 +0000 Subject: As per the developers handbook (5.3.1 step 1), prepare the vendor trees for import of new ipfilter vendor sources by flattening them. To keep the tags consistent with dist, the tags are also flattened. Approved by: glebius (Mentor) --- contrib/ipfilter/lib/load_url.c | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 contrib/ipfilter/lib/load_url.c (limited to 'contrib/ipfilter/lib/load_url.c') diff --git a/contrib/ipfilter/lib/load_url.c b/contrib/ipfilter/lib/load_url.c deleted file mode 100644 index 7709153..0000000 --- a/contrib/ipfilter/lib/load_url.c +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2006 by Darren Reed. - * - * See the IPFILTER.LICENCE file for details on licencing. - * - * $Id: load_url.c,v 1.1.2.1 2006/08/25 21:13:04 darrenr Exp $ - */ - -#include "ipf.h" - -alist_t * -load_url(char *url) -{ - alist_t *hosts = NULL; - - if (strncmp(url, "file://", 7) == 0) { - /* - * file:///etc/passwd - * ^------------s - */ - hosts = load_file(url); - - } else if (*url == '/' || *url == '.') { - hosts = load_file(url); - - } else if (strncmp(url, "http://", 7) == 0) { - hosts = load_http(url); - } - - return hosts; -} -- cgit v1.1