mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-12-03 09:59:53 +02:00
changes in the parsing command line options
This commit is contained in:
parent
84358f6963
commit
d0092bb3c9
@ -989,7 +989,7 @@ longopts_to_optstring(const struct option opts[], const size_t len)
|
||||
s = result;
|
||||
for (i = 0; i < len; i++)
|
||||
{
|
||||
if (opts[i].val > 128 || !isprint(opts[i].val))
|
||||
if (!isprint(opts[i].val)) //opts[i].val > 128 ||
|
||||
continue;
|
||||
*s++ = opts[i].val;
|
||||
if (opts[i].has_arg != no_argument)
|
||||
|
Loading…
Reference in New Issue
Block a user