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

Diff for /src/usr.bin/column/column.c between version 1.20 and 1.21

version 1.20, 2015/10/05 13:30:30 version 1.21, 2015/10/09 01:37:07
Line 76 
Line 76 
         } else          } else
                 termwidth = win.ws_col;                  termwidth = win.ws_col;
   
         if (tame("stdio rpath", NULL) == -1)          if (pledge("stdio rpath", NULL) == -1)
                 err(1, "tame");                  err(1, "pledge");
   
         tflag = xflag = 0;          tflag = xflag = 0;
         while ((ch = getopt(argc, argv, "c:s:tx")) != -1)          while ((ch = getopt(argc, argv, "c:s:tx")) != -1)
Line 116 
Line 116 
                         }                          }
                 }                  }
         }          }
         if (tame("stdio", NULL) == -1)          if (pledge("stdio", NULL) == -1)
                 err(1, "tame");                  err(1, "pledge");
   
         if (!entries)          if (!entries)
                 exit(eval);                  exit(eval);

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