On Fri, Jan 26, 2018 at 10:43:47AM -0700, Clint Pachl wrote: > I received the following output from security(8): > > Running security(8): > Can't > opendir(/home/pachl/.cache/mozilla/seamonkey/e8cxa4g0.default/safebrowsing-backup): > No such file or directory at /usr/libexec/security line 594.
That likely comes from the File::Find inside of find_special_files where security(8) looks for changed setuid files and devices. Most likely that cache directory was cleaned up between reading the directory listing of the parent and actually trying to recurse into that directory. You could add your home directory to the SUIDSKIP environment variable in /etc/daily.local to avoid searching there if this message keeps annoying you and you don't care about devices and suid changes there. http://man.openbsd.org/security#SUIDSKIP l8rZ, -- andrew - http://afresh1.com Instructions are just another man's opinion of how to do something. -- Weldboy #DPWisdom

