From a8f66804d5e271f61d34c77863ed0696d74ec3ec Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Oct 2010 13:46:14 -0400 Subject: [PATCH] [cosmetic] adding DbgEn/Ex to symlink functions --- sys/nfs41_driver.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c index 30db05e..23de919 100644 --- a/sys/nfs41_driver.c +++ b/sys/nfs41_driver.c @@ -4290,6 +4290,7 @@ static NTSTATUS nfs41_SetReparsePoint( nfs41_updowncall_entry *entry; NTSTATUS status; + DbgEn(); print_reparse_buffer(Reparse); if (Reparse->ReparseTag != IO_REPARSE_TAG_SYMLINK) { @@ -4319,6 +4320,7 @@ static NTSTATUS nfs41_SetReparsePoint( status = map_symlink_errors(entry->status); RxFreePool(entry); out: + DbgEx(); return status; } @@ -4335,6 +4337,7 @@ static NTSTATUS nfs41_GetReparsePoint( SymbolicLinkReparseBuffer.PathBuffer); NTSTATUS status; + DbgEn(); if (FsCtl->OutputBufferLength < HeaderLen) { RxContext->InformationToReturn = HeaderLen; status = STATUS_BUFFER_TOO_SMALL; @@ -4381,6 +4384,7 @@ static NTSTATUS nfs41_GetReparsePoint( } RxFreePool(entry); out: + DbgEx(); return status; }