=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/ciphers.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/openssl/ciphers.c 2015/08/19 18:25:31 1.6 --- src/usr.bin/openssl/ciphers.c 2015/10/10 22:28:51 1.7 *************** *** 1,4 **** ! /* $OpenBSD: ciphers.c,v 1.6 2015/08/19 18:25:31 deraadt Exp $ */ /* * Copyright (c) 2014 Joel Sing * --- 1,4 ---- ! /* $OpenBSD: ciphers.c,v 1.7 2015/10/10 22:28:51 doug Exp $ */ /* * Copyright (c) 2014 Joel Sing * *************** *** 80,85 **** --- 80,90 ---- uint16_t value; int i, rv = 0; char *desc; + + if (single_execution) { + if (pledge("stdio rpath", NULL) == -1) + perror("pledge"); + } memset(&ciphers_config, 0, sizeof(ciphers_config));