From d9c39ac36bb2bb1fd09b521adc8899eb025cd85e Mon Sep 17 00:00:00 2001 From: eeb Date: Tue, 3 Sep 2002 21:41:26 +0000 Subject: [PATCH] reply message initialisation fix --- lustre/ptlrpc/niobuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/ptlrpc/niobuf.c b/lustre/ptlrpc/niobuf.c index 44f9007..7de7922 100644 --- a/lustre/ptlrpc/niobuf.c +++ b/lustre/ptlrpc/niobuf.c @@ -276,7 +276,7 @@ int ptlrpc_reply(struct ptlrpc_service *svc, struct ptlrpc_request *req) //req->rq_repmsg->conn = req->rq_connection->c_remote_conn; //req->rq_repmsg->token = req->rq_connection->c_remote_token; req->rq_repmsg->status = HTON__u32(req->rq_status); - req->rq_reqmsg->type = HTON__u32(req->rq_type); + req->rq_repmsg->type = HTON__u32(req->rq_type); return ptl_send_buf(req, req->rq_connection, svc->srv_rep_portal); } -- 1.8.3.1