util: storage: remove 'allow_probe' from virStorageFileGetMetadata

All callers pass 'false' now so it's no longer needed.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa
2018-06-04 10:25:17 +02:00
parent e0f8839b88
commit e1e8d0a9b7
5 changed files with 10 additions and 17 deletions

View File

@@ -117,7 +117,7 @@ testStorageFileGetMetadata(const char *path,
if (VIR_STRDUP(ret->path, path) < 0)
goto error;
if (virStorageFileGetMetadata(ret, uid, gid, false, false) < 0)
if (virStorageFileGetMetadata(ret, uid, gid, false) < 0)
goto error;
return ret;