]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Message string updates for 519854
authorVMware, Inc <>
Wed, 24 Feb 2010 22:22:01 +0000 (14:22 -0800)
committerMarcelo Vanzin <mvanzin@vmware.com>
Wed, 24 Feb 2010 22:22:01 +0000 (14:22 -0800)
Fix message strings based on techpubs input.

Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
open-vm-tools/lib/file/fileIO.c
open-vm-tools/lib/file/filePosix.c

index 450b6933ae1a3c51918f0a800e6aba4424f61161..ee69542df6081f2e76d25b953dc08f5a39f4bf1e 100644 (file)
@@ -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:
index 84e6b7278bdcb2193145981f6422ced3a40458a5..588074923cb51feaedd146d13c6e4ee0903ce36b 100644 (file)
@@ -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__,