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

Diff for /src/usr.bin/uuencode/uuencode.c between version 1.12 and 1.13

version 1.12, 2015/10/07 06:00:33 version 1.13, 2015/10/09 01:37:09
Line 99 
Line 99 
         argc -= optind;          argc -= optind;
   
         if (argc == 2 || outfile) {          if (argc == 2 || outfile) {
                 if (tame("stdio rpath wpath cpath", NULL) == -1)                  if (pledge("stdio rpath wpath cpath", NULL) == -1)
                         err(1, "tame");                          err(1, "pledge");
         } else {          } else {
                 if (tame("stdio", NULL) == -1)                  if (pledge("stdio", NULL) == -1)
                         err(1, "tame");                          err(1, "pledge");
         }          }
   
         switch(argc) {          switch(argc) {

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