summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-01-15 10:57:14 +0100
committerFelix Fietkau <nbd@openwrt.org>2013-01-15 11:12:53 +0100
commit7872d4e2889c364ffa8e01ea43e465e21ab32a3c (patch)
tree23186f0d0b1fd710a14867c08daee48f4d3268b8
parentd7f7f002e3d168aedb5f2bc92180f5966482d7d9 (diff)
remove commented out TODO items
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rw-r--r--proto.c19
1 files changed, 0 insertions, 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;
}