artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ac8143
)
rmdir() is just a CPATH operation; remove RPATH marker that snuck in.
author
deraadt
<deraadt@openbsd.org>
Tue, 6 Oct 2015 14:39:07 +0000
(14:39 +0000)
committer
deraadt
<deraadt@openbsd.org>
Tue, 6 Oct 2015 14:39:07 +0000
(14:39 +0000)
sys/kern/vfs_syscalls.c
patch
|
blob
|
history
diff --git
a/sys/kern/vfs_syscalls.c
b/sys/kern/vfs_syscalls.c
index
0636ee5
..
4c23eb5
100644
(file)
--- a/
sys/kern/vfs_syscalls.c
+++ b/
sys/kern/vfs_syscalls.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: vfs_syscalls.c,v 1.22
7 2015/08/31 16:13:11
deraadt Exp $ */
+/* $OpenBSD: vfs_syscalls.c,v 1.22
8 2015/10/06 14:39:07
deraadt Exp $ */
/* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */
/*
@@
-2723,7
+2723,7
@@
sys_rmdir(struct proc *p, void *v, register_t *retval)
syscallarg(const char *) path;
} */ *uap = v;
- p->p_tamenote = TMN_CPATH
| TMN_RPATH
;
+ p->p_tamenote = TMN_CPATH;
return (dounlinkat(p, AT_FDCWD, SCARG(uap, path), AT_REMOVEDIR));
}