Avoid using non-standard struct names.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2485 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-07-20 04:35:42 +00:00
parent 7d4eeffa7f
commit 4232e68fc0

View File

@@ -138,12 +138,15 @@ send_request (krb5_context context,
*p++ = (ap_req_data.length >> 8) & 0xFF;
*p++ = (ap_req_data.length >> 0) & 0xFF;
memset(&msghdr, 0, sizeof(msghdr));
msghdr.msg_name = &addr;
msghdr.msg_namelen = sizeof(addr);
msghdr.msg_iov = iov;
msghdr.msg_iovlen = sizeof(iov)/sizeof(*iov);
#if 0
msghdr.msg_control = NULL;
msghdr.msg_controllen = 0;
#endif
iov[0].iov_base = header;
iov[0].iov_len = 6;