]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
[Bug 1507819] Workaround fix to avoid rpc warning messages flooding by changing log...
authorDyno Hongjun Fu <hfu@vmware.com>
Tue, 24 Nov 2015 06:17:12 +0000 (22:17 -0800)
committerDyno Hongjun Fu <hfu@vmware.com>
Tue, 24 Nov 2015 06:37:27 +0000 (22:37 -0800)
open-vm-tools/lib/rpcChannel/simpleSocket.c

index b99822331e9a1eac86d75835e30bceb64f085db2..041b6f9b2ac0b5cfe663fa552d04572b5c2cd95e 100644 (file)
@@ -205,7 +205,7 @@ Socket_Recv(SOCKET fd,      // IN
    while (remaining > 0) {
       rv = recv(fd, buf , remaining, 0);
       if (rv == 0) {
-         Warning(LGPFX "Socket %d closed by peer.", fd);
+         Debug(LGPFX "Socket %d closed by peer.", fd);
          return FALSE;
       }
       if (rv == SOCKET_ERROR) {