We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ affcat -b file.aff affcat: unknown option -- b affcat version 3.7.20 ... -b --- Output BADFALG for bad blocks (default is NULLs) ...
The reason is quite obvious: 'b' is missing in the getopt() string:
'b'
getopt()
while ((ch = getopt(argc, argv, "s:S:p:lLh?dqnvr:")) != -1) { ... case 'b': opt_badflag = 1; break; ... }
Apparently never tested since the early days :-)
The text was updated successfully, but these errors were encountered:
Yeah, very interesting. Alright, well I'll go ahead and allow it to work.
Sorry, something went wrong.
6494d53
No branches or pull requests
The reason is quite obvious:
'b'
is missing in thegetopt()
string:Apparently never tested since the early days :-)
The text was updated successfully, but these errors were encountered: