Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d40fd86e authored by Kenny Root's avatar Kenny Root Committed by Gerrit Code Review
Browse files

Merge "Windows adb: initialize on to 1 in disable_tcp_nagle"

parents b94b038d bbe26c1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -781,7 +781,7 @@ int adb_socket_accept(int serverfd, struct sockaddr* addr, socklen_t *addrle
void  disable_tcp_nagle(int fd)
{
    FH   fh = _fh_from_int(fd);
    int  on;
    int  on = 1;

    if ( !fh || fh->clazz != &_fh_socket_class )
        return;