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

Diff for /src/usr.bin/diff/diff.c between version 1.62 and 1.63

version 1.62, 2015/10/05 20:15:00 version 1.63, 2015/10/09 01:37:07
Line 212 
Line 212 
         argv += optind;          argv += optind;
   
         if (getenv("TMPDIR")) {          if (getenv("TMPDIR")) {
                 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 rpath tmppath", NULL) == -1)                  if (pledge("stdio rpath tmppath", NULL) == -1)
                         err(1, "tame");                          err(1, "pledge");
         }          }
   
         /*          /*

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63