#5417: RelativeLink.sh in Tor browser bundle has small typo causing debug mode 
to
be always turned on
-------------------------+--------------------------------------------------
 Reporter:  cypherpunks  |          Owner:  mikeperry
     Type:  defect       |         Status:  new      
 Priority:  normal       |      Milestone:           
Component:  Tor Browser  |        Version:           
 Keywords:               |         Parent:           
   Points:               |   Actualpoints:           
-------------------------+--------------------------------------------------
 TBB starts in debug mode disregardless of --debug switch used or not. This
 is caused by small bug on line 208 on RelativeLink.sh, where it says

 if [ "${debug}" ];

 where it should say

 if [ "${debug}" == 1];

 or

 if [ ${debug} -eq 1 ];

-- 
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/5417>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online
_______________________________________________
tor-bugs mailing list
[email protected]
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Reply via email to