return;
}
-static int libxl__device_nic_from_xs_be(libxl__gc *gc,
+static int libxl__device_nic_from_xenstore(libxl__gc *gc,
const char *be_path,
libxl_device_nic *nic)
{
if (!path)
goto out;
- rc = libxl__device_nic_from_xs_be(gc, path, nic);
+ rc = libxl__device_nic_from_xenstore(gc, path, nic);
if (rc) goto out;
rc = 0;
for (; pnic < pnic_end; pnic++, dir++) {
const char *p;
p = libxl__sprintf(gc, "%s/%s", be_path, *dir);
- rc = libxl__device_nic_from_xs_be(gc, p, pnic);
+ rc = libxl__device_nic_from_xenstore(gc, p, pnic);
if (rc) goto out;
pnic->backend_domid = 0;
}