1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Remove superflous &

Gulm clvmd no longer hangs trying to talk to a rebooted node.
This commit is contained in:
Patrick Caulfield 2005-01-25 16:46:29 +00:00
parent c9f9a8b2b3
commit 4e224cf079
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
Version 2.01.03 -
===================================
clvmd announces startup and cluster connection in syslog.
Gulm clvmd doesn't hang trying to talk to a rebooted node.
Version 2.01.02 - 21st January 2005
===================================

View File

@ -358,7 +358,7 @@ static struct node_info *add_or_set_node(char *name, struct in6_addr *ip, uint8_
}
}
set_node_state(ninfo, (char *)&ip, state);
set_node_state(ninfo, (char *)ip, state);
return ninfo;
}