> diff --git a/ndctl/json.c b/ndctl/json.c > index 23bad7f..7646882 100644 > --- a/ndctl/json.c > +++ b/ndctl/json.c > @@ -381,7 +381,7 @@ struct json_object > *util_region_capabilities_to_json(struct ndctl_region *region > struct ndctl_pfn *pfn = ndctl_region_get_pfn_seed(region); > struct ndctl_dax *dax = ndctl_region_get_dax_seed(region); > > - if (!btt || !pfn || !dax) > + if (!btt && !pfn && !dax) > return NULL; > > jcaps = json_object_new_array();
Reviewed-by: Jeff Moyer <jmo...@redhat.com>