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>
|
||||
|
||||
* src/remote_internal.c: Stop reading data off wire once
|
||||
|
@ -6117,14 +6117,13 @@ processCallRecvMsg(virConnectPtr conn, struct private_data *priv,
|
||||
|
||||
static int
|
||||
processCallRecv(virConnectPtr conn, struct private_data *priv,
|
||||
int in_open) {
|
||||
int ret;
|
||||
|
||||
int in_open)
|
||||
{
|
||||
/* Read as much data as is available, until we get
|
||||
* EGAIN
|
||||
* EAGAIN
|
||||
*/
|
||||
for (;;) {
|
||||
ret = processCallRecvSome(conn, priv, in_open);
|
||||
int ret = processCallRecvSome(conn, priv, in_open);
|
||||
|
||||
if (ret < 0)
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user