Merge "init: keychord inotify add IN_ONLYDIR"

This commit is contained in:
Mark Salyzyn 2018-05-14 16:08:14 +00:00 committed by Gerrit Code Review
commit c8dd6b74e6
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ void GeteventOpenDevice() {
inotify_fd = ::inotify_init1(IN_NONBLOCK | IN_CLOEXEC);
if (inotify_fd < 0) {
PLOG(WARNING) << "Could not instantiate inotify for " << kDevicePath;
} else if (::inotify_add_watch(inotify_fd, kDevicePath, IN_DELETE | IN_CREATE) < 0) {
} else if (::inotify_add_watch(inotify_fd, kDevicePath, IN_DELETE | IN_CREATE | IN_ONLYDIR) < 0) {
PLOG(WARNING) << "Could not add watch for " << kDevicePath;
::close(inotify_fd);
inotify_fd = -1;