summaryrefslogtreecommitdiff
path: root/src/odhcp6c.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-01-10 13:10:37 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-01-10 13:10:37 +0100
commitb4d90de3204d4b7b813f0e1bc0019b8607a29c9f (patch)
tree3d7d9f72b143b7d02ab8b810c94cc83d845d0cc9 /src/odhcp6c.c
parent7489874cd84cc77c97f475fd1ed842b642eed3c5 (diff)
downloadodhcp6c-b4d90de3204d4b7b813f0e1bc0019b8607a29c9f.tar.gz
Whitespace fixes
Mostly trailing spaces or whitespace in empty lines.
Diffstat (limited to 'src/odhcp6c.c')
-rw-r--r--src/odhcp6c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/odhcp6c.c b/src/odhcp6c.c
index dbba605..bf61d50 100644
--- a/src/odhcp6c.c
+++ b/src/odhcp6c.c
@@ -262,7 +262,7 @@ int main(_unused int argc, char* const argv[])
while (do_signal == 0 || do_signal == SIGUSR1) {
do_signal = 0;
- script_call("informed");
+ script_call("informed");
int res = dhcpv6_poll_reconfigure();
odhcp6c_signal_process();
@@ -327,7 +327,7 @@ int main(_unused int argc, char* const argv[])
script_call("updated");
continue; // Renew was successful
}
-
+
odhcp6c_clear_state(STATE_SERVER_ID); // Remove binding
// If we have IAs, try rebind otherwise restart
@@ -470,7 +470,7 @@ void odhcp6c_insert_state(enum odhcp6c_state state, size_t offset, const void *d
uint8_t *n = odhcp6c_resize_state(state, len);
if (n) {
uint8_t *sdata = state_data[state];
-
+
memmove(sdata + offset + len, sdata + offset, len_after);
memcpy(sdata + offset, data, len);
}