Updated messages with new config files in mind to keep from confusing
users.

diff --git a/files/directory.c b/files/directory.c
index 0516329..3e42254 100644
--- a/files/directory.c
+++ b/files/directory.c
@@ -80,7 +80,7 @@
     cwd = path;
     if ((drive = DRIVE_FindDriveRoot( &cwd )) == -1)
     {
-        MESSAGE("Warning: could not find wine.conf [Drive x] entry "
+        MESSAGE("Warning: could not find wine config [Drive x] entry "
             "for current working directory %s; "
 	    "starting in windows directory.\n", cwd );
     }
@@ -120,7 +120,7 @@
                              path, sizeof(path) );
     if (strchr(path, '/'))
     {
-	MESSAGE("No '/' allowed in [wine] 'Path=' statement of wine.conf !\n");
+	MESSAGE("No '/' allowed in [wine] 'Path=' statement of wine config!\n");
 	PROFILE_UsageWineIni();
 	ExitProcess(1);
     }
diff --git a/files/drive.c b/files/drive.c
index 3e18f90..6dc727a 100644
--- a/files/drive.c
+++ b/files/drive.c
@@ -61,9 +61,9 @@
     char     *dos_cwd;   /* cwd in DOS format without leading or trailing \ */
     char     *unix_cwd;  /* cwd in Unix format without leading or trailing / */
     char     *device;    /* raw device path */
-    char      label_conf[12]; /* drive label as cfg'd in wine.conf */
+    char      label_conf[12]; /* drive label as cfg'd in wine config */
     char      label_read[12]; /* drive label as read from device */
-    DWORD     serial_conf;    /* drive serial number as cfg'd in wine.conf */
+    DWORD     serial_conf;    /* drive serial number as cfg'd in wine config */
     UINT      type;      /* drive type */
     UINT      flags;     /* drive flags */
     dev_t     dev;       /* unix device number */