Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix plugin load error for itdtimg #260

Merged
merged 1 commit into from
Mar 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/tape_drivers/generic/itdtimg/itdtimg_tc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1419,7 +1419,7 @@ int itdtimage_get_serialnumber(void *vstate, char **result)
return DEVICE_GOOD;
}

int filedebug_get_info(void *device, struct tc_drive_info *info)
int itdtimage_get_info(void *device, struct tc_drive_info *info)
{
/*
* Return dummy data.
Expand Down Expand Up @@ -1642,6 +1642,7 @@ struct tape_ops itdtimage_handler = {
.is_mountable = itdtimage_is_mountable,
.get_worm_status = itdtimage_get_worm_status,
.get_serialnumber = itdtimage_get_serialnumber,
.get_info = itdtimage_get_info,
.set_profiler = itdtimage_set_profiler,
.get_block_in_buffer = itdtimage_get_block_in_buffer,
.is_readonly = itdtimage_is_readonly,
Expand Down