Corrected datatype of salen to fix compiler warning

This commit is contained in:
Mukund Sivaraman 2008-03-08 17:41:08 -08:00
parent 0ac647ab98
commit 8848b647d7

View File

@ -236,7 +236,7 @@ int
getpeer_information(int fd, char *ipaddr, char *string_addr)
{
struct sockaddr_storage sa;
size_t salen = sizeof(sa);
socklen_t salen = sizeof sa;
assert(fd >= 0);
assert(ipaddr != NULL);