Fix spacing in if statement in tor_version_parse()
This if statement in tor_version_parse():
if ( hexlen == 0 || (hexlen % 2) == 1)
should be:
if (hexlen == 0 || (hexlen % 2) == 1)
This if statement in tor_version_parse():
if ( hexlen == 0 || (hexlen % 2) == 1)
should be:
if (hexlen == 0 || (hexlen % 2) == 1)
changed milestone to %Tor: 0.4.4.x-final
PR: https://github.com/torproject/tor/pull/1895
Trac:
Status: assigned to needs_review
Thanks, looks fine. I don't think this needs a changes file.
Trac:
Reviewer: N/A to ahf
Status: needs_review to merge_ready
merged
Trac:
Status: merge_ready to closed
Resolution: N/A to fixed
Trac:
Milestone: N/A to Tor: 0.4.4.x-final
closed
moved to tpo/core/tor#34237 (closed)