drop some dead code

This commit is contained in:
Michael Davidsaver
2018-02-01 19:51:32 -08:00
parent 606669c62b
commit d41d15d59e
2 changed files with 0 additions and 29 deletions

View File

@ -531,32 +531,6 @@ int main (int argc, char *argv[])
case 'i': /* Print server info */
printInfo = true;
break;
/*
case 'F': // Store this for output formatting
fieldSeparator = (char) *optarg;
break;
case 'f': // Use input stream as input
{
string fileName = optarg;
if (fileName == "-")
inputStream = &cin;
else
{
ifs.open(fileName.c_str(), ifstream::in);
if (!ifs)
{
fprintf(stderr,
"Failed to open file '%s'.\n",
fileName.c_str());
return 1;
}
else
inputStream = &ifs;
}
fromStream = true;
break;
}*/
case '?':
fprintf(stderr,
"Unrecognized option: '-%c'. ('pvlist -h' for help.)\n",