From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Pokorný Date: Wed, 10 Oct 2012 12:19:19 +0200 Subject: [Cluster-devel] [PATCH] libcman: fix CMAN_DISPATCH_IGNORE_MASK Message-ID: <1349864359-16990-1-git-send-email-jpokorny@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit ...which is expected to be bitwise OR of CMAN_DISPATCH_IGNORE_{REPLY,DATA,EVENT}. Signed-off-by: Jan Pokorn? --- cman/lib/libcman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cman/lib/libcman.h b/cman/lib/libcman.h index 9f97875..bc9cb71 100644 --- a/cman/lib/libcman.h +++ b/cman/lib/libcman.h @@ -83,7 +83,7 @@ typedef enum {CMAN_REASON_PORTCLOSED, #define CMAN_DISPATCH_IGNORE_DATA 8 #define CMAN_DISPATCH_IGNORE_EVENT 16 #define CMAN_DISPATCH_TYPE_MASK 3 -#define CMAN_DISPATCH_IGNORE_MASK 46 +#define CMAN_DISPATCH_IGNORE_MASK 28 /* * A node address. This is a complete sockaddr_in[6] -- 1.7.9.4