Version 2.02.67 -
===============================
+ Don't merge unchanged persistent cache file before dumping if tool scanned.
Fix incorrect memory pool deallocation while using vg_read for files.
Add --type parameter description to the lvcreate man page.
Replace strncmp kernel version number checks with proper ones.
{
struct pfilter *pf;
struct dev_filter *f = NULL;
+ struct stat info;
if (!(pf = dm_malloc(sizeof(*pf))))
return_NULL;
if (!(f = dm_malloc(sizeof(*f))))
goto_bad;
+ /* Only merge cache file before dumping it if it changed externally. */
+ if (!stat(pf->file, &info))
+ pf->ctime = info.st_ctime;
+
f->passes_filter = _lookup_p;
f->destroy = _persistent_destroy;
f->private = pf;