mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 13:17:58 +03:00
storagefile: Rename qcow2GetBackingStoreFormat
...to qcow2GetExtensions. We will extend it for more extension parsing in future patches Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
parent
16fffd8257
commit
125dbad3af
@ -427,9 +427,9 @@ cowGetBackingStore(char **res,
|
||||
|
||||
|
||||
static int
|
||||
qcow2GetBackingStoreFormat(int *format,
|
||||
const char *buf,
|
||||
size_t buf_size)
|
||||
qcow2GetExtensions(int *format,
|
||||
const char *buf,
|
||||
size_t buf_size)
|
||||
{
|
||||
size_t offset;
|
||||
size_t extension_start;
|
||||
@ -561,7 +561,7 @@ qcowXGetBackingStore(char **res,
|
||||
memcpy(*res, buf + offset, size);
|
||||
(*res)[size] = '\0';
|
||||
|
||||
if (qcow2GetBackingStoreFormat(format, buf, buf_size) < 0)
|
||||
if (qcow2GetExtensions(format, buf, buf_size) < 0)
|
||||
return BACKING_STORE_INVALID;
|
||||
|
||||
return BACKING_STORE_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user