Removed redundant 'y' and 'n' options from -y/-n mode so quickpick works
properly and output is standardized
This commit is contained in:
parent
6c075036d7
commit
0ec5a7475c
2
ask.c
2
ask.c
@ -389,8 +389,6 @@ int main(int argc, char *argv[])
|
|||||||
if (yes || no) {
|
if (yes || no) {
|
||||||
if ((size_t)nopts + 4 >= linescap)
|
if ((size_t)nopts + 4 >= linescap)
|
||||||
opts = memcheck(realloc(opts, (linescap += 4)*sizeof(char*)));
|
opts = memcheck(realloc(opts, (linescap += 4)*sizeof(char*)));
|
||||||
opts[nopts++] = "y";
|
|
||||||
opts[nopts++] = "n";
|
|
||||||
opts[nopts++] = "Y";
|
opts[nopts++] = "Y";
|
||||||
opts[nopts++] = "N";
|
opts[nopts++] = "N";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user