and though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here

...
 
Commits (2)
#------------------------------------------------------------------------------
# $File: der,v 1.3 2020/02/16 20:45:21 christos Exp $
# $File: der,v 1.4 2021/03/14 17:12:04 christos Exp $
# der: file(1) magic for DER encoded files
#
......@@ -117,8 +117,9 @@
0 der seq
>&0 der seq
>>&0 der eoc Certificate
>>>&0 der int1=02 \b, Version=3
>>&0 der eoc
>>>&0 der int1=02 Certificate, Version=3
>>>&0 der int1=x Certificate, Version=%s
>>&0 der int9=x \b, Serial=%s
>>&0 der seq
>>>&0 der obj_id9=2a864886f70d01010b
......
......@@ -27,7 +27,7 @@
#include "file.h"
#ifndef lint
FILE_RCSID("@(#)$File: seccomp.c,v 1.17 2020/09/05 17:20:32 christos Exp $")
FILE_RCSID("@(#)$File: seccomp.c,v 1.18 2021/03/14 17:01:58 christos Exp $")
#endif /* lint */
#if HAVE_LIBSECCOMP
......@@ -175,9 +175,7 @@ enable_sandbox_full(void)
ALLOW_RULE(fcntl64);
ALLOW_RULE(fstat);
ALLOW_RULE(fstat64);
#ifdef XZLIBSUPPORT
ALLOW_RULE(futex);
#endif
ALLOW_RULE(getdents);
#ifdef __NR_getdents64
ALLOW_RULE(getdents64);
......