bab74078a9
commit includes the various ports festival can work with. Big thanks to Trevor for putting in all the time to port these! PR: 21182, 21183, 21184, 21185, 21186, 21187, 21188, 21189 21190, 21191, 21192, 21193, 21194, 21195, 21196, 21197 21198, 21199, 21200, 21201 Submitted by: Trevor Johnson <trevor@jpj.net> Obtained from: NetBSD pkgsrc
14 lines
475 B
Plaintext
14 lines
475 B
Plaintext
passing `int *' as argument 3 of `accept(int, sockaddr *, socklen_t *)' changes signedness
|
|
|
|
--- speech_tools/utils/EST_Server.cc.orig Thu Nov 18 23:14:51 1999
|
|
+++ speech_tools/utils/EST_Server.cc Sun Jun 11 17:27:17 2000
|
|
@@ -647,7 +647,7 @@
|
|
|
|
while (connected() &&
|
|
(csocket = accept(p_socket, (struct sockaddr *) &sin,
|
|
- SOCKLEN_CAST &sin_size))>=0)
|
|
+ (socklen_t *) &sin_size))>=0)
|
|
{
|
|
if (p_trace)
|
|
*p_trace << "connection " << csocket << "\n";
|