]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Adjust some log messages.
authorVMware, Inc <>
Tue, 13 Mar 2012 20:09:28 +0000 (13:09 -0700)
committerDmitry Torokhov <dtor@vmware.com>
Wed, 14 Mar 2012 16:43:25 +0000 (09:43 -0700)
Signed-off-by: Dmitry Torokhov <dtor@vmware.com>
open-vm-tools/lib/file/file.c
open-vm-tools/lib/file/fileLockPosix.c

index 60fe7857ba59177778350b55de8c83169d2de69e..8eb280b919b06ab8e42dee3e2fcca065b3e1d524 100644 (file)
@@ -1122,7 +1122,7 @@ File_CopyTree(ConstUnicode srcName,    // IN:
    if (!File_IsDirectory(srcName)) {
       err = Err_Errno();
       Msg_Append(MSGID(File.CopyTree.source.notDirectory)
-                 "The source path '%s' is not a directory.\n\n",
+                 "Source path '%s' is not a directory.",
                  UTF8(srcName));
       Err_SetErrno(err);
       return FALSE;
@@ -1131,7 +1131,7 @@ File_CopyTree(ConstUnicode srcName,    // IN:
    if (!File_IsDirectory(dstName)) {
       err = Err_Errno();
       Msg_Append(MSGID(File.CopyTree.dest.notDirectory)
-                 "The destination path '%s' is not a directory.\n\n",
+                 "Destination path '%s' is not a directory.",
                  UTF8(dstName));
       Err_SetErrno(err);
       return FALSE;
@@ -1381,7 +1381,7 @@ File_MoveTree(ConstUnicode srcName,   // IN:
 
    if (!File_IsDirectory(srcName)) {
       Msg_Append(MSGID(File.MoveTree.source.notDirectory)
-                 "The source path '%s' is not a directory.\n\n",
+                 "Source path '%s' is not a directory.",
                  UTF8(srcName));
 
       return FALSE;
index 655d41dd95f8eaf05204a5908717373f328d739d..1462fc05b08b417191a891763df2e02ddbdcd0f3 100644 (file)
@@ -595,7 +595,7 @@ FileLockAppendMessage(MsgList **msgs,  // IN/OPT:
                       int err)         // IN: errno
 {
    MsgList_Append(msgs, MSGID(fileLock.posix)
-                  "A file locking error (%d) has occurred: %s",
+                  "A file locking error (%d) has occurred: %s.",
                   err, Err_Errno2String(err));
 }