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

Diff for /src/usr.bin/wall/wall.c between version 1.33 and 1.34

version 1.33, 2018/08/07 18:28:05 version 1.34, 2019/01/28 20:17:51
Line 119 
Line 119 
                 err(1, "unveil");                  err(1, "unveil");
         if (unveil(_PATH_DEV, "w") == -1)          if (unveil(_PATH_DEV, "w") == -1)
                 err(1, "unveil");                  err(1, "unveil");
           if (unveil(_PATH_DEVDB, "r") == -1)
                   err(1, "unveil");
         if (pledge("stdio rpath wpath getpw proc", NULL) == -1)          if (pledge("stdio rpath wpath getpw proc", NULL) == -1)
                 err(1, "pledge");                  err(1, "pledge");
   

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34