mirror of https://gitee.com/openkylin/libvirt.git
cleanup: Change datatype of usbdev->allow to boolean
This commit is contained in:
parent
00b6828dc2
commit
f2adc3b435
|
@ -8679,9 +8679,9 @@ virDomainRedirFilterUsbDevDefParseXML(const xmlNodePtr node)
|
|||
allow = virXMLPropString(node, "allow");
|
||||
if (allow) {
|
||||
if (STREQ(allow, "yes"))
|
||||
def->allow = 1;
|
||||
def->allow = true;
|
||||
else if (STREQ(allow, "no"))
|
||||
def->allow = 0;
|
||||
def->allow = false;
|
||||
else {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||
_("Invalid allow value, either 'yes' or 'no'"));
|
||||
|
|
|
@ -1440,7 +1440,7 @@ struct _virDomainRedirFilterUsbDevDef {
|
|||
int vendor;
|
||||
int product;
|
||||
int version;
|
||||
unsigned int allow :1;
|
||||
bool allow;
|
||||
};
|
||||
|
||||
struct _virDomainRedirFilterDef {
|
||||
|
|
Loading…
Reference in New Issue