(krb5_sock_to_principal): rename sa_len -> salen to avoid the macro

that's defined on irix.  noted by "Jacques A. Vidrine" <n@nectar.com>


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10396 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-07-26 09:05:30 +00:00
parent 3584154454
commit 62d0b2a09a

View File

@@ -45,15 +45,15 @@ krb5_sock_to_principal (krb5_context context,
krb5_error_code ret;
struct sockaddr_storage __ss;
struct sockaddr *sa = (struct sockaddr *)&__ss;
socklen_t sa_len = sizeof(__ss);
socklen_t salen = sizeof(__ss);
char hostname[NI_MAXHOST];
if (getsockname (sock, sa, &sa_len) < 0) {
if (getsockname (sock, sa, &salen) < 0) {
ret = errno;
krb5_set_error_string (context, "getsockname: %s", strerror(ret));
return ret;
}
ret = getnameinfo (sa, sa_len, hostname, sizeof(hostname), NULL, 0, 0);
ret = getnameinfo (sa, salen, hostname, sizeof(hostname), NULL, 0, 0);
if (ret) {
int save_errno = errno;