From 4f1440294a7877fcca7ead4bec40d688095085e4 Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 23 Aug 2002 09:44:55 +0000 Subject: [PATCH] Fix minor typo - confusing when looking at the debug log, but not a bug. --- lustre/ost/ost_handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/ost/ost_handler.c b/lustre/ost/ost_handler.c index 33615ad..faf1766 100644 --- a/lustre/ost/ost_handler.c +++ b/lustre/ost/ost_handler.c @@ -486,12 +486,12 @@ static int ost_handle(struct ptlrpc_request *req) rc = ost_setattr(req); break; case OST_OPEN: - CDEBUG(D_INODE, "setattr\n"); + CDEBUG(D_INODE, "open\n"); OBD_FAIL_RETURN(OBD_FAIL_OST_OPEN_NET, 0); rc = ost_open(req); break; case OST_CLOSE: - CDEBUG(D_INODE, "setattr\n"); + CDEBUG(D_INODE, "close\n"); OBD_FAIL_RETURN(OBD_FAIL_OST_CLOSE_NET, 0); rc = ost_close(req); break; -- 1.8.3.1