fix an endless loop in node device XML dump

* src/node_device.c: fix an endless loop in node device XML dump,
  patch by Cole Robinson
Daniel
This commit is contained in:
Daniel Veillard 2009-07-01 21:30:41 +00:00
parent bf32184d48
commit bc429a0e54
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Jul 1 23:29:33 CEST 2009 Daniel Veillard <veillard@redhat.com>
* src/node_device.c: fix an endless loop in node device XML dump,
patch by Cole Robinson
Wed Jul 1 23:23:19 CEST 2009 Daniel Veillard <veillard@redhat.com>
* docs/drvone.html docs/drvone.html.in: small OpenNebula driver

View File

@ -73,8 +73,8 @@ static int update_caps(virNodeDeviceObjPtr dev)
cap->data.scsi_host.host);
}
}
cap = cap->next;
}
cap = cap->next;
}
return 0;