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

Diff for /src/usr.bin/cut/cut.c between version 1.19 and 1.20

version 1.19, 2015/08/18 17:10:48 version 1.20, 2015/10/05 13:27:45
Line 63 
Line 63 
   
         setlocale (LC_ALL, "");          setlocale (LC_ALL, "");
   
           if (tame("stdio rpath", NULL) == -1)
                   err(1, "tame");
   
         dchar = '\t';                   /* default delimiter is \t */          dchar = '\t';                   /* default delimiter is \t */
   
         /* Since we don't support multi-byte characters, the -c and -b          /* Since we don't support multi-byte characters, the -c and -b
Line 117 
Line 120 
                                 }                                  }
                         }                          }
                 }                  }
         else          else {
                   if (tame("stdio rpath", NULL) == -1)
                           err(1, "tame");
                 fcn(stdin, "stdin");                  fcn(stdin, "stdin");
           }
         exit(rval);          exit(rval);
 }  }
   

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20