dreid 2002/07/12 04:47:15
Modified: test testpoll.c
Log:
BeOS uses port 7772 for apache 2, so if you ran these tests on a system
with apache 2 running then this test would fail. Move the port number higher
to avoid the problem.
Revision Changes Path
1.10 +1 -1 apr/test/testpoll.c
Index: testpoll.c
===================================================================
RCS file: /home/cvs/apr/test/testpoll.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- testpoll.c 11 Jul 2002 05:19:45 -0000 1.9
+++ testpoll.c 12 Jul 2002 11:47:15 -0000 1.10
@@ -167,7 +167,7 @@
printf("\tCreating the sockets I'll use..........");
for (i = 0; i < 3; i++){
- if (make_socket(&s[i], &sa[i], 7770 + i, context) != 0){
+ if (make_socket(&s[i], &sa[i], 7777 + i, context) != 0){
exit(-1);
}
}