[driver] fixing printing a unicode string in setattr

This commit is contained in:
Olga Kornievskaia 2011-10-04 14:33:18 -04:00
parent 981e73dc61
commit b3e4953890

View file

@ -4653,7 +4653,7 @@ NTSTATUS nfs41_SetFileInformation (
status = STATUS_NOT_SUPPORTED; status = STATUS_NOT_SUPPORTED;
goto out; goto out;
} }
DbgP("Attempting to rename to '%wZ'\n", dst); DbgP("Attempting to rename to '%wZ'\n", &dst);
nfs41_fcb->Flags = 0; nfs41_fcb->Flags = 0;
} }
break; break;
@ -4667,7 +4667,7 @@ NTSTATUS nfs41_SetFileInformation (
status = STATUS_NOT_SUPPORTED; status = STATUS_NOT_SUPPORTED;
goto out; goto out;
} }
DbgP("Attempting to add link as '%wZ'\n", dst); DbgP("Attempting to add link as '%wZ'\n", &dst);
nfs41_fcb->Flags = 0; nfs41_fcb->Flags = 0;
} }
break; break;