Module: wine Branch: master Commit: 5abe9de59fdc88a8c742f313f35cb175c60da98e URL: https://gitlab.winehq.org/wine/wine/-/commit/5abe9de59fdc88a8c742f313f35cb17...
Author: Maxim Karasev mxkrsv@etersoft.ru Date: Wed Aug 2 20:42:07 2023 +0300
secur32: Add stub message for unimplemented name types in GetUserNameExW.
---
dlls/secur32/secur32.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/secur32/secur32.c b/dlls/secur32/secur32.c index 46a80c9a76c..bb723e90004 100644 --- a/dlls/secur32/secur32.c +++ b/dlls/secur32/secur32.c @@ -1140,6 +1140,7 @@ BOOLEAN WINAPI GetUserNameExW( case NameCanonicalEx: case NameServicePrincipal: case NameDnsDomain: + FIXME("NameFormat %d not implemented\n", NameFormat); SetLastError(ERROR_NONE_MAPPED); return FALSE;