https://git.reactos.org/?p=reactos.git;a=commitdiff;h=556cef5be30306a8fda9f8...
commit 556cef5be30306a8fda9f806451d69c2af012d12 Author: Eric Kohl eric.kohl@reactos.org AuthorDate: Sun Jul 4 12:31:22 2021 +0200 Commit: Eric Kohl eric.kohl@reactos.org CommitDate: Sun Jul 4 12:31:22 2021 +0200
[SAMLIB] Add function names to trace messages --- dll/win32/samlib/samlib.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/dll/win32/samlib/samlib.c b/dll/win32/samlib/samlib.c index 7237a874d12..8df3582e0e4 100644 --- a/dll/win32/samlib/samlib.c +++ b/dll/win32/samlib/samlib.c @@ -155,7 +155,7 @@ SampCheckPassword(IN SAMPR_HANDLE UserHandle, ULONG Upper = 0, Lower = 0, Digit = 0, Punct = 0, Alpha = 0; NTSTATUS Status = STATUS_SUCCESS;
- TRACE("(%p %p)\n", UserHandle, Password); + TRACE("SampCheckPassword(%p %p)\n", UserHandle, Password);
/* Get the domain password information */ Status = SamrGetUserDomainPasswordInformation(UserHandle, @@ -1045,7 +1045,7 @@ NTAPI SamGetCompatibilityMode(IN SAM_HANDLE ObjectHandle, OUT PULONG Mode) { - TRACE("(%p %p)\n", ObjectHandle, Mode); + TRACE("SamGetCompatibilityMode(%p %p)\n", ObjectHandle, Mode);
if (Mode == NULL) return STATUS_INVALID_PARAMETER; @@ -1065,7 +1065,7 @@ SamGetDisplayEnumerationIndex(IN SAM_HANDLE DomainHandle, { NTSTATUS Status;
- TRACE("(%p %lu %wZ %p)\n", + TRACE("SamGetDisplayEnumerationIndex(%p %lu %wZ %p)\n", DomainHandle, DisplayInformation, Prefix, Index);
if ((Prefix == NULL) || @@ -1574,7 +1574,7 @@ SamQueryDisplayInformation(IN SAM_HANDLE DomainHandle, SAMPR_DISPLAY_INFO_BUFFER LocalBuffer; NTSTATUS Status;
- TRACE("(%p %lu %lu %lu %lu %p %p %p %p)\n", + TRACE("SamQueryDisplayInformation(%p %lu %lu %lu %lu %p %p %p %p)\n", DomainHandle, DisplayInformation, Index, EntryCount, PreferredMaximumLength, TotalAvailable, TotalReturned, ReturnedEntryCount, SortedBuffer); @@ -2288,7 +2288,7 @@ SamShutdownSamServer(IN SAM_HANDLE ServerHandle) { NTSTATUS Status;
- TRACE("(%p)\n", ServerHandle); + TRACE("SamShutdownSamServer(%p)\n", ServerHandle);
RpcTryExcept {