From: VMware, Inc <> Date: Wed, 18 Sep 2013 03:33:01 +0000 (-0700) Subject: Changes in shared code that don't affect open-vm-tools functionality. X-Git-Tag: 2013.09.16-1328054~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ed1ec7e22d20401b388ebb08e09ac2b74326c45;p=thirdparty%2Fopen-vm-tools.git Changes in shared code that don't affect open-vm-tools functionality. Signed-off-by: Dmitry Torokhov --- diff --git a/open-vm-tools/modules/linux/vsock/linux/vsockVmci.h b/open-vm-tools/modules/linux/vsock/linux/vsockVmci.h index e5a6e2860..16606cc24 100644 --- a/open-vm-tools/modules/linux/vsock/linux/vsockVmci.h +++ b/open-vm-tools/modules/linux/vsock/linux/vsockVmci.h @@ -96,6 +96,9 @@ VSockVmci_ErrorToVSockError(int32 vmciError) // IN case VMCI_ERROR_MODULE_NOT_LOADED: err = ESYSNOTREADY; break; + case VMCI_ERROR_NO_HANDLE: + err = ENETUNREACH; + break; case VMCI_ERROR_INVALID_ARGS: default: err = EINVAL;