From 7872d4e2889c364ffa8e01ea43e465e21ab32a3c Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 15 Jan 2013 10:57:14 +0100 Subject: [PATCH 1/1] remove commented out TODO items Signed-off-by: Felix Fietkau --- proto.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/proto.c b/proto.c index 40e7fc8..b45a2d5 100644 --- a/proto.c +++ b/proto.c @@ -349,13 +349,6 @@ proto_apply_static_ip_settings(struct interface *iface, struct blob_attr *attr) if (parse_prefix_list(iface, cur) < 0) goto out; -/* TODO: Clarify - if (!n_v4 && !n_v6) { - error = "NO_ADDRESS"; - goto error; - } -*/ - if (n_v4 < 0 || n_v6 < 0) goto out; @@ -386,7 +379,6 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex { struct blob_attr *tb[__OPT_MAX]; struct blob_attr *cur; -// const char *error; int n_v4 = 0, n_v6 = 0; blobmsg_parse(proto_ip_attributes, __OPT_MAX, tb, blob_data(attr), blob_len(attr)); @@ -401,13 +393,6 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex if (parse_prefix_list(iface, cur) < 0) goto out; -/* TODO: clarify - if (!n_v4 && !n_v6) { - error = "NO_ADDRESS"; - goto error; - } -*/ - if (n_v4 < 0 || n_v6 < 0) goto out; @@ -427,10 +412,6 @@ proto_apply_ip_settings(struct interface *iface, struct blob_attr *attr, bool ex return 0; -/* TODO: clarify -error: - interface_add_error(iface, "proto", error, NULL, 0); -*/ out: return -1; } -- 2.11.0