mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
Remove unused nwfilter field from struct remote_error
Change 965466c1 added a new field to struct remote_error, which broke the RPC protocol. Fortunately the new field is unused, so this change simply removes it again. * src/remote/remote_protocol.(c|h|x): Remove remote_nwfilter from struct remote_error
This commit is contained in:
parent
6bc4ea5af0
commit
34a7f3f6be
@ -227,8 +227,6 @@ xdr_remote_error (XDR *xdrs, remote_error *objp)
|
||||
return FALSE;
|
||||
if (!xdr_remote_network (xdrs, &objp->net))
|
||||
return FALSE;
|
||||
if (!xdr_remote_nwfilter (xdrs, &objp->nwfilter))
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
@ -143,7 +143,6 @@ struct remote_error {
|
||||
int int1;
|
||||
int int2;
|
||||
remote_network net;
|
||||
remote_nwfilter nwfilter;
|
||||
};
|
||||
typedef struct remote_error remote_error;
|
||||
|
||||
|
@ -266,7 +266,6 @@ struct remote_error {
|
||||
int int1;
|
||||
int int2;
|
||||
remote_network net;
|
||||
remote_nwfilter nwfilter;
|
||||
};
|
||||
|
||||
/* Authentication types available thus far.... */
|
||||
|
Loading…
x
Reference in New Issue
Block a user