From 2763d4b51a9c52bd379b29b76d43a88f009161d5 Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Wed, 6 Mar 2013 21:24:56 +0000 Subject: [PATCH] Fix unused variable warning. --- src/rfc3315.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rfc3315.c b/src/rfc3315.c index b3bf3cf..c95de0b 100644 --- a/src/rfc3315.c +++ b/src/rfc3315.c @@ -1044,7 +1044,7 @@ static int dhcp6_no_relay(int msg_type, struct in6_addr *link_address, struct dh struct dhcp_netid *add_options(struct state *state, struct in6_addr *fallback, struct dhcp_context *context) { - void *opt, *oro; + void *oro; /* filter options based on tags, those we want get DHOPT_TAGOK bit set */ struct dhcp_netid *tagif = option_filter(state->tags, state->context_tags, daemon->dhcp_opts6); struct dhcp_opt *opt_cfg;