int max_slots;
int i=1;
/* Slot | Volume | Status | MediaType | Pool */
- const char *slot_hformat=" %4i%c| %16s | %9s | %20s | %18s |\n";
+ const char *slot_hformat="| %4i%c| %-30s | %-9s | %-10s | %-18s |\n";
if (ua->api) {
status_content(ua, store_r);
ua->warning_msg(_("No Volumes found, or no barcodes.\n"));
goto bail_out;
}
- ua->send_msg(_(" Slot | Volume Name | Status | Media Type | Pool |\n"));
- ua->send_msg(_("------+------------------+-----------+----------------------+--------------------|\n"));
+ ua->send_msg(_("+------+--------------------------------+-----------+------------+--------------------+\n"));
+ ua->send_msg(_("| Slot | Volume Name | Status | Media Type | Pool |\n"));
+ ua->send_msg(_("+------+--------------------------------+-----------+------------+--------------------+\n"));
/* Walk through the list getting the media records */
for (vl=vol_list; vl; vl=vl->next) {
slot_list[i]=0;
}
}
+ ua->send_msg(_("+------+--------------------------------+-----------+------------+--------------------+\n"));
memset(&mr, 0, sizeof(MEDIA_DBR));
bstrncpy(mr.VolumeName, vl->VolName, sizeof(mr.VolumeName));