mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-01 17:35:17 +00:00
Fix typo & tweak variable decl
This commit is contained in:
parent
46d1324e47
commit
94d6177982
@ -1,3 +1,7 @@
|
|||||||
|
Wed Jan 28 22:05:11 GMT 2009 Daniel P.Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
|
* src/remote_internal.c: Fix typo, and tweak variable decl
|
||||||
|
|
||||||
Wed Jan 28 21:55:11 GMT 2009 Daniel P.Berrange <berrange@redhat.com>
|
Wed Jan 28 21:55:11 GMT 2009 Daniel P.Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* src/remote_internal.c: Stop reading data off wire once
|
* src/remote_internal.c: Stop reading data off wire once
|
||||||
|
@ -6117,14 +6117,13 @@ processCallRecvMsg(virConnectPtr conn, struct private_data *priv,
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
processCallRecv(virConnectPtr conn, struct private_data *priv,
|
processCallRecv(virConnectPtr conn, struct private_data *priv,
|
||||||
int in_open) {
|
int in_open)
|
||||||
int ret;
|
{
|
||||||
|
|
||||||
/* Read as much data as is available, until we get
|
/* Read as much data as is available, until we get
|
||||||
* EGAIN
|
* EAGAIN
|
||||||
*/
|
*/
|
||||||
for (;;) {
|
for (;;) {
|
||||||
ret = processCallRecvSome(conn, priv, in_open);
|
int ret = processCallRecvSome(conn, priv, in_open);
|
||||||
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user