mirror of git://anongit.mindrot.org/openssh.git
- (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc;
patch from Felix von Leitner; ok dtucker
This commit is contained in:
parent
ad7d23d461
commit
0fa0ed061b
|
@ -1,3 +1,7 @@
|
|||
20140910
|
||||
- (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc;
|
||||
patch from Felix von Leitner; ok dtucker
|
||||
|
||||
20140908
|
||||
- (dtucker) [INSTALL] Update info about egd. ok djm@
|
||||
|
||||
|
|
|
@ -117,6 +117,10 @@ static const struct sock_filter preauth_insns[] = {
|
|||
#endif
|
||||
#ifdef __NR_mmap
|
||||
SC_ALLOW(mmap),
|
||||
#endif
|
||||
#ifdef __dietlibc__
|
||||
SC_ALLOW(mremap),
|
||||
SC_ALLOW(exit),
|
||||
#endif
|
||||
SC_ALLOW(munmap),
|
||||
SC_ALLOW(exit_group),
|
||||
|
|
Loading…
Reference in New Issue