Removed redundant 'y' and 'n' options from -y/-n mode so quickpick works

properly and output is standardized
This commit is contained in:
Bruce Hill 2019-09-22 13:52:09 -07:00
parent 6c075036d7
commit 0ec5a7475c

2
ask.c
View File

@ -389,8 +389,6 @@ int main(int argc, char *argv[])
if (yes || no) {
if ((size_t)nopts + 4 >= linescap)
opts = memcheck(realloc(opts, (linescap += 4)*sizeof(char*)));
opts[nopts++] = "y";
opts[nopts++] = "n";
opts[nopts++] = "Y";
opts[nopts++] = "N";
}