Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Aug 2011 13:40:15 GMT
From:      Catalin Nicutar <cnicutar@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 197818 for review
Message-ID:  <201108181340.p7IDeFMJ065620@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@197818?ac=10

Change 197818 by cnicutar@cnicutar_cronos on 2011/08/18 13:39:38

	Fixed a test case. The comment said "the client requests a large
	UTO" but in the test it was the other way around.

Affected files ...

.. //depot/projects/soc2011/cnicutar_tcputo_9/src/tools/regression/netinet/tcputo/long_uto.c#2 edit

Differences ...

==== //depot/projects/soc2011/cnicutar_tcputo_9/src/tools/regression/netinet/tcputo/long_uto.c#2 (text+ko) ====

@@ -45,7 +45,7 @@
 		err(EX_OSERR, "fork");
 		break;
 	case 0:
-		server_disconnect(saddr, port, DOWNTIME, UTO, 1);
+		server_disconnect(saddr, port, DOWNTIME, 0, 1);
 		exit(EX_OK);
 		break;
 	}
@@ -59,7 +59,7 @@
 		err(EX_OSERR, "fork");
 		break;
 	case 0:
-		client_generic(caddr, saddr, port, 0, 1);
+		client_generic(caddr, saddr, port, UTO, 1);
 		exit(EX_OK);
 		break;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108181340.p7IDeFMJ065620>