From b4e315d47d9c78e03cf8b69a56fa80a5a123ed2c Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 6 Feb 2004 18:00:53 +0000 Subject: [PATCH] Fix logic error in recent checkin. Put bitfields together. b=2680 --- lustre/ldlm/ldlm_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/ldlm/ldlm_lib.c b/lustre/ldlm/ldlm_lib.c index 552010a..ca11d2f 100644 --- a/lustre/ldlm/ldlm_lib.c +++ b/lustre/ldlm/ldlm_lib.c @@ -510,7 +510,7 @@ int target_handle_connect(struct ptlrpc_request *req, svc_handler_t handler) LASSERT(export != NULL); /* request from liblustre? */ - if (lustre_msg_get_op_flags(req->rq_reqmsg) | MSG_CONNECT_LIBCLIENT) + if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) export->exp_libclient = 1; if (req->rq_connection != NULL) -- 1.8.3.1