Skip Menu |
 

To: krb5-bugs@mit.edu
From: Ken Raeburn <raeburn@mit.edu>
Date: Sun, 08 Aug 2004 19:51:25 -0400
Subject: rpc code should use socklen_t
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