=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/Attic/nseq.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/openssl/Attic/nseq.c 2015/08/22 16:36:05 1.4 --- src/usr.bin/openssl/Attic/nseq.c 2015/10/10 22:28:51 1.5 *************** *** 1,4 **** ! /* $OpenBSD: nseq.c,v 1.4 2015/08/22 16:36:05 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ --- 1,4 ---- ! /* $OpenBSD: nseq.c,v 1.5 2015/10/10 22:28:51 doug Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ *************** *** 108,113 **** --- 108,118 ---- X509 *x509 = NULL; NETSCAPE_CERT_SEQUENCE *seq = NULL; int i, ret = 1; + + if (single_execution) { + if (pledge("stdio rpath wpath cpath", NULL) == -1) + perror("pledge"); + } memset(&nseq_config, 0, sizeof(nseq_config));