1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-31 14:50:37 +03:00

Avoid duplicate definitions.

This commit is contained in:
Alasdair Kergon 2010-03-23 14:35:08 +00:00
parent eb7692743f
commit 7eaf1f294d

View File

@ -112,9 +112,13 @@ struct cluster_ops *init_corosync_cluster(void);
#ifdef USE_SINGLENODE
# define SINGLENODE_CSID_LEN (sizeof(int))
# define MAX_CLUSTER_MEMBER_NAME_LEN 64
# ifndef MAX_CLUSTER_MEMBER_NAME_LEN
# define MAX_CLUSTER_MEMBER_NAME_LEN 64
# endif
# define SINGLENODE_MAX_CLUSTER_MESSAGE 65535
# define MAX_CSID_LEN sizeof(int)
# ifndef MAX_CSID_LEN
# define MAX_CSID_LEN sizeof(int)
# endif
struct cluster_ops *init_singlenode_cluster(void);
#endif