Fix a simple bug that prevents svc_tli_create to bind to the address specified by caller. NetBSD rev. 1.6 --- lib/libc/rpc/svc_generic.c.orig Sun May 18 11:37:06 2003 +++ lib/libc/rpc/svc_generic.c Sun May 18 11:37:00 2003 @@ -245,7 +245,7 @@ _listen(fd, SOMAXCONN); } else { if (_bind(fd, - (struct sockaddr *)(void *)&bindaddr->addr.buf, + (struct sockaddr *)bindaddr->addr.buf, (socklen_t)si.si_alen) < 0) { warnx( "svc_tli_create: could not bind to requested address");