From e4055508a0f81770c93f6f80fc022e7a720df3b4 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Fri, 12 Jan 2001 19:55:19 +0000 Subject: [PATCH] Updated messages with new config files in mind to keep from confusing users. --- files/directory.c | 4 ++-- files/drive.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/files/directory.c b/files/directory.c index 051632930ba..3e42254c7fe 100644 --- a/files/directory.c +++ b/files/directory.c @@ -80,7 +80,7 @@ int DIR_Init(void) 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 @@ int DIR_Init(void) 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 3e18f90c20a..6dc727afb86 100644 --- a/files/drive.c +++ b/files/drive.c @@ -61,9 +61,9 @@ typedef struct 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 */