Fix wrong fallback address in DHCPv6
diff --git a/src/dhcp6.c b/src/dhcp6.c
index 6c27f4b..6c20a0f 100644
--- a/src/dhcp6.c
+++ b/src/dhcp6.c
@@ -244,7 +244,7 @@
 	 if we have no matching dhcp-context, because we're only
 	 allocating on remote subnets via relays. This
 	 is used as a default for the DNS server option. */
-      memcpy(&param->fallback, &local, IN6ADDRSZ);
+      param->fallback = *local;
       
       for (context = daemon->dhcp6; context; context = context->next)
 	{