commit 3256ae540fcf30bbe6fac3d7ac3127cda8fb23b3 parent 799f3cee234877f41351a47c8dbfcb0daab5daec Author: sin <sin@2f30.org> Date: Thu, 24 Mar 2016 10:18:19 +0000 fix accidental infinite recursion Diffstat:
M | stun.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