From: adilger Date: Fri, 23 Aug 2002 09:44:55 +0000 (+0000) Subject: Fix minor typo - confusing when looking at the debug log, but not a bug. X-Git-Tag: 0.5.5~66 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=4f1440294a7877fcca7ead4bec40d688095085e4;p=fs%2Flustre-release.git Fix minor typo - confusing when looking at the debug log, but not a bug. --- 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;