From b3e4953890a038d50aec5253bf4af9bc2b2f14be Mon Sep 17 00:00:00 2001 From: Olga Kornievskaia Date: Tue, 4 Oct 2011 14:33:18 -0400 Subject: [PATCH] [driver] fixing printing a unicode string in setattr --- sys/nfs41_driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c index 2504ff6..07dfec7 100644 --- a/sys/nfs41_driver.c +++ b/sys/nfs41_driver.c @@ -4653,7 +4653,7 @@ NTSTATUS nfs41_SetFileInformation ( status = STATUS_NOT_SUPPORTED; goto out; } - DbgP("Attempting to rename to '%wZ'\n", dst); + DbgP("Attempting to rename to '%wZ'\n", &dst); nfs41_fcb->Flags = 0; } break; @@ -4667,7 +4667,7 @@ NTSTATUS nfs41_SetFileInformation ( status = STATUS_NOT_SUPPORTED; goto out; } - DbgP("Attempting to add link as '%wZ'\n", dst); + DbgP("Attempting to add link as '%wZ'\n", &dst); nfs41_fcb->Flags = 0; } break;