am d033739d: am d40fd86e: Merge "Windows adb: initialize on to 1 in disable_tcp_nagle"

# By Ray Donnelly
# Via Android Git Automerger (1) and others
* commit 'd033739d176f8a2da99f80ef4a03bdca0649b644':
  Windows adb: initialize on to 1 in disable_tcp_nagle
This commit is contained in:
Kenny Root 2013-01-29 21:52:07 -08:00 committed by Android Git Automerger
commit 6c3d3ccfa5
1 changed files with 1 additions and 1 deletions

View File

@ -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;