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

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

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