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

Diff for /src/usr.bin/usbhidaction/usbhidaction.c between version 1.23 and 1.24

version 1.23, 2019/06/28 13:35:05 version 1.24, 2021/12/15 11:23:09
Line 164 
Line 164 
                 isdemon = 1;                  isdemon = 1;
         }          }
   
           if (unveil(conf, "r") == -1)
                   err(1, "unveil %s", conf);
           if (unveil(NULL, NULL) == -1)
                   err(1, "unveil");
   
         for(;;) {          for(;;) {
                 n = read(fd, buf, sz);                  n = read(fd, buf, sz);
                 if (verbose > 2) {                  if (verbose > 2) {

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24