projects
/
oweals
/
odhcp6c.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68042dd
)
dhcpv6: clear CUSTOM_OPTS in a more sane manner
author
Steven Barth
<steven@midlink.org>
Tue, 9 Jun 2015 12:04:59 +0000
(14:04 +0200)
committer
Steven Barth
<steven@midlink.org>
Tue, 9 Jun 2015 12:04:59 +0000
(14:04 +0200)
Signed-off-by: Steven Barth <steven@midlink.org>
src/dhcpv6.c
patch
|
blob
|
history
src/script.c
patch
|
blob
|
history
diff --git
a/src/dhcpv6.c
b/src/dhcpv6.c
index 425aee1987d5ae6c19c20eb13a3d64e372036fbf..760f2359a112e715330a5bc309261da0540193c7 100644
(file)
--- a/
src/dhcpv6.c
+++ b/
src/dhcpv6.c
@@
-948,6
+948,7
@@
static int dhcpv6_handle_reply(enum dhcpv6_msg orig, _unused const int rc,
odhcp6c_clear_state(STATE_S46_MAPE);
odhcp6c_clear_state(STATE_S46_LW);
odhcp6c_clear_state(STATE_PASSTHRU);
+ odhcp6c_clear_state(STATE_CUSTOM_OPTS);
// Parse and find all matching IAs
dhcpv6_for_each_option(opt, end, otype, olen, odata) {
diff --git
a/src/script.c
b/src/script.c
index 219d034d82f75f75cbcd3da4d1e1ddd238d13d2f..dbdd89bd3c03d67d711b0e0da14528390c978bb8 100644
(file)
--- a/
src/script.c
+++ b/
src/script.c
@@
-410,7
+410,4
@@
void script_call(const char *status)
execv(argv[0], argv);
_exit(128);
}
-
- // Delete lost prefixes and user opts
- odhcp6c_clear_state(STATE_CUSTOM_OPTS);
}