Skip to content
Snippets Groups Projects
Commit ca853813 authored by Marc-André Lureau's avatar Marc-André Lureau
Browse files

vhost-user-scsi: avoid use of iscsi_ namespace


It is confusing and could easily conflict with future versions.

Signed-off-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <f4bug@amsat.org>
parent ade9ab22
No related branches found
No related tags found
No related merge requests found
......@@ -247,7 +247,7 @@ struct scsi_task {
/** libiscsi integration **/
static int iscsi_add_lun(VusIscsiLun *lun, char *iscsi_uri)
static int vus_iscsi_add_lun(VusIscsiLun *lun, char *iscsi_uri)
{
struct iscsi_url *iscsi_url;
struct iscsi_context *iscsi_ctx;
......@@ -703,7 +703,7 @@ int main(int argc, char **argv)
}
vdev_scsi = vdev_scsi_new(sock);
if (iscsi_add_lun(&vdev_scsi->lun, iscsi_uri) != 0) {
if (vus_iscsi_add_lun(&vdev_scsi->lun, iscsi_uri) != 0) {
goto err;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment