Remove redundant assignment of infile from optarg in loadpoolfile()

which was previously assigned from optarg in the argument list from
main().
This commit is contained in:
Cy Schubert 2017-06-10 23:16:00 +00:00
parent eeebff447f
commit 5910b44e7d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=319810

View File

@ -361,8 +361,6 @@ loadpoolfile(argc, argv, infile)
{
int c;
infile = optarg;
while ((c = getopt(argc, argv, "dnRuv")) != -1)
switch (c)
{