Module: wine Branch: master Commit: c85357a230cf80c4af651c4539086f3901c8a53f URL: http://source.winehq.org/git/wine.git/?a=commit;h=c85357a230cf80c4af651c4539...
Author: André Hentschel nerv@dawncrow.de Date: Thu Jun 24 20:15:06 2010 +0200
kernel32: Update a warning.
---
dlls/kernel32/computername.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/computername.c b/dlls/kernel32/computername.c index 258f297..f710d7c 100644 --- a/dlls/kernel32/computername.c +++ b/dlls/kernel32/computername.c @@ -551,7 +551,7 @@ BOOL WINAPI SetComputerNameW( LPCWSTR lpComputerName ) { /* This check isn't necessary, but may help debugging problems. */ WARN( "Disabled by Wine Configuration.\n" ); - WARN( "Set "UseDnsComputerName" = "N" in category [Network] to enable.\n" ); + WARN( "Set "UseDnsComputerName" = "N" in HKCU\Software\Wine\Network to enable.\n" ); SetLastError ( ERROR_ACCESS_DENIED ); return FALSE; }