You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ tlsdate --host=xxx
./tlsdate: option '--host' doesn't allow an argument
The problem is that the field has_arg field in the array of struct options long_options is 0 (no_argument), but should be 1 (required_argument) for --host, --port, --protocol --certcontainer, and --proxy.
The short form flags work because they use the optstring (-H google.com works).
The text was updated successfully, but these errors were encountered:
Not able to push a branch to do a pull request:
remote: Permission to ioerror/tlsdate.git denied to miltieIV2.
fatal: unable to access 'https://github.com/ioerror/tlsdate.git/': The requested URL returned error: 403
$ tlsdate --host=xxx
./tlsdate: option '--host' doesn't allow an argument
The problem is that the field has_arg field in the array of struct options long_options is 0 (no_argument), but should be 1 (required_argument) for --host, --port, --protocol --certcontainer, and --proxy.
The short form flags work because they use the optstring (-H google.com works).
The text was updated successfully, but these errors were encountered: