A broken .wine/config file of mine made me see this message quite often last week. :-) (The way "mess" is set in DIR_GetPath() seems a bit brute-force, but that's another story... :-o ) Gerald ChangeLog: Add trailing full-stop to warning in DIR_GetPath(). Index: directory.c =================================================================== RCS file: /home/wine/wine/files/directory.c,v retrieving revision 1.59 diff -u -3 -p -r1.59 directory.c --- directory.c 24 Jan 2003 00:54:58 -0000 1.59 +++ directory.c 24 Mar 2003 15:37:00 -0000 @@ -84,7 +84,7 @@ static int DIR_GetPath( LPCWSTR keyname, (!(GetLongPathNameW(full_name->short_name, longname, longname_len))) ) { if (warn) - MESSAGE("Invalid path %s for %s directory: %s\n", + MESSAGE("Invalid path %s for %s directory: %s.\n", debugstr_w(path), debugstr_w(keyname), mess); return 0; }