1
0
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:
VictorSpirin 2018-03-20 11:15:53 +03:00
parent 84358f6963
commit d0092bb3c9

View File

@ -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)