BUG/MINOR: fix listening IP address storage for frontends (cont)

Commit 6e6158 was incomplete. There was an additional aggregate copy
that may trigger a similar case in the future.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 48e584c..9b76465 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -298,7 +298,7 @@
 			l->bind_conf = bind_conf;
 
 			l->fd = fd;
-			l->addr = ss;
+			memcpy(&l->addr, &ss, sizeof(ss));
 			l->xprt = &raw_sock;
 			l->state = LI_INIT;