Fix bug when fork isn't available (Win32) in remote driver

This commit is contained in:
Daniel P. Berrange 2009-01-15 20:13:12 +00:00
parent 2be79b1d5e
commit dd9b3fb594
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Jan 15 20:12:19 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/remote_internal.c: Fix bug when fork isn't available (Win32)
Thu Jan 15 20:06:19 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/remote_internal.c: Reduce number of exit paths in APIs

View File

@ -678,6 +678,7 @@ doRemoteOpen (virConnectPtr conn,
case trans_ext:
error (conn, VIR_ERR_INVALID_ARG,
_("transport methods unix, ssh and ext are not supported under Windows"));
goto failed;
#endif /* WIN32 */