Add a newbie warning for slashes in the search Path= of wine.conf.

diff --git a/files/directory.c b/files/directory.c
index ef83953..220a811 100644
--- a/files/directory.c
+++ b/files/directory.c
@@ -116,6 +116,12 @@
 
     PROFILE_GetWineIniString("wine", "path", "c:\\windows;c:\\windows\\system",
                              path, sizeof(path) );
+    if (strchr(path, '/'))
+    {
+	MESSAGE("No '/' allowed in [wine] 'Path=' statement of wine.conf !\n");
+	PROFILE_UsageWineIni();
+	ExitProcess(1);
+    }
 
     /* Set the environment variables */