[driver] fixing printing a unicode string in setattr
This commit is contained in:
parent
981e73dc61
commit
b3e4953890
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue