Index: ossp-pkg/sa/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/sa/ChangeLog,v rcsdiff -q -kk '-r1.21' '-r1.22' -u '/v/ossp/cvs/ossp-pkg/sa/ChangeLog,v' 2>/dev/null --- ChangeLog 2003/01/31 18:32:00 1.21 +++ ChangeLog 2003/01/31 18:34:06 1.22 @@ -11,6 +11,12 @@ This is a list of all changes to OSSP sa. For a more brief summary please have a look at the NEWS file. + Changes between 1.0.4 and 1.0.5 (28-Jan-2003 to 31-Jan-2003) + + o Fixed test suite (sa_test.c): an sa_addr_t was destroyed + too early and this way crashed the test suite. + [Brian T. Egleston ] + Changes between 1.0.3 and 1.0.4 (06-Jan-2003 to 28-Jan-2003) o Fixed embedding support: mappings for symbols sa_sendf and sa_id Index: ossp-pkg/sa/THANKS RCS File: /v/ossp/cvs/ossp-pkg/sa/THANKS,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/sa/THANKS,v' 2>/dev/null --- THANKS 2002/11/07 06:25:01 1.2 +++ THANKS 2003/01/31 18:34:06 1.3 @@ -18,6 +18,7 @@ bugfixes, hints, gave platform feedback, etc. (in alphabetical order): o Ulrich Dessauer + o Brian T. Egleston o Michael van Elst o Thomas Lotterer o Alvaro Lopez Ortega Index: ossp-pkg/sa/sa_test.c RCS File: /v/ossp/cvs/ossp-pkg/sa/sa_test.c,v rcsdiff -q -kk '-r1.23' '-r1.24' -u '/v/ossp/cvs/ossp-pkg/sa/sa_test.c,v' 2>/dev/null --- sa_test.c 2003/01/06 13:11:23 1.23 +++ sa_test.c 2003/01/31 18:34:06 1.24 @@ -187,8 +187,8 @@ /* bind socket to local port */ ex(SRV, sa_addr_create(&saa_srv)); ex(SRV, sa_addr_u2a(saa_srv, "inet://127.0.0.1:12345#tcp")); - ex(SRV, sa_addr_destroy(saa_srv)); ex(SRV, sa_bind(sa_srv, saa_srv)); + ex(SRV, sa_addr_destroy(saa_srv)); /* receive client connection */ ex(SRV, sa_listen(sa_srv, 10)); @@ -229,8 +229,8 @@ /* connect to server */ ex(CLT, sa_addr_create(&saa_clt)); ex(CLT, sa_addr_u2a(saa_clt, "inet://127.0.0.1:12345#tcp")); - ex(CLT, sa_addr_destroy(saa_clt)); ex(CLT, sa_connect(sa_clt, saa_clt)); + ex(CLT, sa_addr_destroy(saa_clt)); /* communicate with server */ ex(CLT, sa_readln(sa_clt, buf_clt, sizeof(buf_clt), &l)); @@ -281,8 +281,8 @@ /* bind socket to local port */ ex(SRV, sa_addr_create(&saa_srv)); ex(SRV, sa_addr_u2a(saa_srv, "inet://127.0.0.1:12345#udp")); - ex(SRV, sa_addr_destroy(saa_srv)); ex(SRV, sa_bind(sa_srv, saa_srv)); + ex(SRV, sa_addr_destroy(saa_srv)); /* communicate with client */ ex(SRV, sa_recv(sa_srv, &saa_clt, buf_srv, sizeof(buf_srv), &l));