Deleted Added
full compact
37c37
< __FBSDID("$FreeBSD: head/sys/kern/uipc_sockbuf.c 126411 2004-02-29 17:54:05Z rwatson $");
---
> __FBSDID("$FreeBSD: head/sys/kern/uipc_sockbuf.c 126425 2004-03-01 03:14:23Z rwatson $");
1064,1066c1064
< dup_sockaddr(sa, canwait)
< struct sockaddr *sa;
< int canwait;
---
> sodupsockaddr(const struct sockaddr *sa, int mflags)
1070,1071c1068
< MALLOC(sa2, struct sockaddr *, sa->sa_len, M_SONAME,
< canwait ? M_WAITOK : M_NOWAIT);
---
> sa2 = malloc(sa->sa_len, M_SONAME, mflags);