Re: [tor-dev] next globe update feedback

2013-11-05 Thread Lunar
Philipp Winter: On Sun, Nov 03, 2013 at 11:23:18AM -0800, Damian Johnson wrote: I worked on a new update for globe... Damn this is awesome! I'm tempted to link to this from our front page (replacing Tor Browser in the project matrix on www.torproject.org, since TBB is already the

Re: [tor-dev] Bug 9665

2013-11-05 Thread Lunar
Hi Fábio, Fábio Bertinatto: I would like to start contributing to Tor development thus I picked up a bug and tried to fix it. Great! :) It's the 9665: https://trac.torproject.org/projects/tor/ticket/9665 I don't know whether I understood the problem well or not but I came up with the

[tor-dev] torsocks-v2.0.0-rc3 NetBSD improvements

2013-11-05 Thread Thomas Klausner
Hi! I've patched torsocks-v2.0.0-rc3 to compile on NetBSD. There is one warning left: syscall.c: In function 'handle_mmap': syscall.c:88:9: warning: cast from pointer to integer of different size and I haven't done any functional tests yet. What is the easiest way to do that? Attached are the

Re: [tor-dev] torsocks-v2.0.0-rc3 NetBSD improvements

2013-11-05 Thread David Goulet
On 05 Nov (16:14:33), Thomas Klausner wrote: Hi! I've patched torsocks-v2.0.0-rc3 to compile on NetBSD. There is one warning left: syscall.c: In function 'handle_mmap': syscall.c:88:9: warning: cast from pointer to integer of different size I encountered that on FreeBSD but I can't

Re: [tor-dev] torsocks-v2.0.0-rc3 NetBSD improvements

2013-11-05 Thread Yawning Angel
On Tue, 5 Nov 2013 14:25:25 -0500 David Goulet dgou...@ev0ke.net wrote: I encountered that on FreeBSD but I can't really make it go away :S ... mmap() returns a void * but syscall() returns an int on BSD but even with a cast it prints the warning... I have *no* idea how *BSD systems handle