warp-vpn

point to point VPN implementation
git clone git://git.2f30.org/warp-vpn
Log | Files | Refs | README

commit 3256ae540fcf30bbe6fac3d7ac3127cda8fb23b3
parent 799f3cee234877f41351a47c8dbfcb0daab5daec
Author: sin <sin@2f30.org>
Date:   Thu, 24 Mar 2016 10:18:19 +0000

fix accidental infinite recursion

Diffstat:
Mstun.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stun.c b/stun.c @@ -289,7 +289,7 @@ readdev(int fd, unsigned char *buf, int len) return n - sizeof(type); return n; } - return readdev(fd, buf, len); + return read(fd, buf, len); } #endif