Skip to content
Snippets Groups Projects
Commit 6f1b89bc authored by Joao Afonso's avatar Joao Afonso
Browse files

Revert "Removing toUpper() conversions of tape VIDs in cmd line tools"

parent fbdf4e1a
Branches
Tags
No related merge requests found
......@@ -46,6 +46,8 @@ ReadtpCmdLineArgs::ReadtpCmdLineArgs(const int argc, char *const *const argv):
throw ex;
}
m_vid = std::string(argv[1]);
utils::toUpper(m_vid);
m_fSeqRangeList = TapeFileSequenceParser::parse(argv[2]);
static struct option longopts[] = {
......
......@@ -61,6 +61,7 @@ TapeLabelCmdLineArgs::TapeLabelCmdLineArgs(const int argc, char *const *const ar
throw ex;
} else {
m_vid = std::string(optarg);
utils::toUpper(m_vid);
}
break;
case 'o':
......@@ -70,6 +71,7 @@ TapeLabelCmdLineArgs::TapeLabelCmdLineArgs(const int argc, char *const *const ar
throw ex;
} else {
m_oldLabel = std::string(optarg);
utils::toUpper(m_oldLabel);
}
break;
case 't':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment