[BACK]Return to openssl.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/openssl.c between version 1.13 and 1.14

version 1.13, 2015/09/21 13:13:06 version 1.14, 2015/10/07 05:21:41
Line 114 
Line 114 
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
 #include <stdlib.h>  #include <stdlib.h>
   #include <unistd.h>
   
 #include "apps.h"  #include "apps.h"
   
Line 434 
Line 435 
   
         arg.data = NULL;          arg.data = NULL;
         arg.count = 0;          arg.count = 0;
   
           if (tame("stdio inet rpath cpath wpath proc", NULL) == -1) {
                   fprintf(stderr, "openssl: tame: %s\n", strerror(errno));
                   exit(1);
           }
   
         bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);          bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
         if (bio_err == NULL) {          if (bio_err == NULL) {

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14