The RPC code we have now is using "int" where it should use "socklen_t" in places -- the length argument to accept(), for example. The AIX compiler we have will generate warnings about mixing "int *" and "unsigned long *" in these cases, but since they're only warnings, the compilation still succeeds. Ken