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

Diff for /src/usr.bin/audioctl/audioctl.c between version 1.42 and 1.43

version 1.42, 2020/02/02 05:25:41 version 1.43, 2021/07/12 15:09:19
Line 285 
Line 285 
         argv += optind;          argv += optind;
   
         if (unveil(path, "w") == -1)          if (unveil(path, "w") == -1)
                 err(1, "unveil");                  err(1, "unveil %s", path);
         if (unveil(NULL, NULL) == -1)          if (unveil(NULL, NULL) == -1)
                 err(1, "unveil");                  err(1, "unveil");
   
Line 296 
Line 296 
         audio_main(argc, argv);          audio_main(argc, argv);
   
         close(fd);          close(fd);
         return 0;          return 0;
 }  }

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43