MINOR: connection: ensure conn_ctrl_close() also resets the fd

The connection's fd was reset to DEAD_FD_MAGIC on conn_force_close()
but not on conn_full_close(), which is a bit strange. Let's do it on
both.
diff --git a/include/proto/connection.h b/include/proto/connection.h
index defdefe..dd19714 100644
--- a/include/proto/connection.h
+++ b/include/proto/connection.h
@@ -125,6 +125,7 @@
 {
 	if ((conn->flags & (CO_FL_XPRT_READY|CO_FL_CTRL_READY)) == CO_FL_CTRL_READY) {
 		fd_delete(conn->handle.fd);
+		conn->handle.fd = DEAD_FD_MAGIC;
 		conn->flags &= ~CO_FL_CTRL_READY;
 	}
 }