From: VMware, Inc <> Date: Wed, 24 Feb 2010 22:22:01 +0000 (-0800) Subject: Message string updates for 519854 X-Git-Tag: 2010.02.23-236320~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16e2d517e24bfa464175329bec1cc69223aa6751;p=thirdparty%2Fopen-vm-tools.git Message string updates for 519854 Fix message strings based on techpubs input. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/lib/file/fileIO.c b/open-vm-tools/lib/file/fileIO.c index 450b6933a..ee69542df 100644 --- a/open-vm-tools/lib/file/fileIO.c +++ b/open-vm-tools/lib/file/fileIO.c @@ -107,7 +107,7 @@ FileIO_MsgError(FileIOResult status) // IN * because you can call your native function to retrieve a more * accurate message. */ - result = MSGID(fileio.generic) "Generic error"; + result = MSGID(fileio.generic) "Error"; break; case FILEIO_OPEN_ERROR_EXIST: @@ -127,7 +127,7 @@ FileIO_MsgError(FileIOResult status) // IN break; case FILEIO_NO_PERMISSION: - result = MSGID(fileio.noPerm) "Insufficient permissions to access the file"; + result = MSGID(fileio.noPerm) "Insufficient permission to access the file"; break; case FILEIO_FILE_NAME_TOO_LONG: diff --git a/open-vm-tools/lib/file/filePosix.c b/open-vm-tools/lib/file/filePosix.c index 84e6b7278..588074923 100644 --- a/open-vm-tools/lib/file/filePosix.c +++ b/open-vm-tools/lib/file/filePosix.c @@ -464,7 +464,7 @@ File_Cwd(ConstUnicode drive) // IN: if (getcwd(buffer, FILE_MAXPATH) == NULL) { Msg_Append(MSGID(filePosix.getcwd) "Unable to retrieve the current working directory: %s. " - "Please check if the directory has been deleted or " + "Check if the directory has been deleted or " "unmounted.\n", Msg_ErrString()); Warning(LGPFX" %s: getcwd() failed: %s\n", __FUNCTION__,