diff options
| author | Guido van Rooij <guido@FreeBSD.org> | 1999-09-29 21:09:41 +0000 |
|---|---|---|
| committer | Guido van Rooij <guido@FreeBSD.org> | 1999-09-29 21:09:41 +0000 |
| commit | 974784e8b47d693907dda2a43b08b8fcd803ecff (patch) | |
| tree | 9c3a2a44e38dea72b99e7a579f49f0b9e0683a56 | |
| parent | 7256d29cc46d3c0056c69117e5760f42773f4d03 (diff) | |
Notes
| -rw-r--r-- | sys/kern/uipc_usrreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index 66352aa85959..7f9304ab7750 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -548,7 +548,7 @@ unp_bind(unp, nam, p) return EINVAL; strncpy(buf, soun->sun_path, namelen); buf[namelen] = 0; /* null-terminate the string */ - NDINIT(&nd, CREATE, FOLLOW | LOCKPARENT, UIO_SYSSPACE, + NDINIT(&nd, CREATE, NOFOLLOW | LOCKPARENT, UIO_SYSSPACE, buf, p); /* SHOULD BE ABLE TO ADOPT EXISTING AND wakeup() ALA FIFO's */ error = namei(&nd); |
