If no group is specified, use the user's primary group

This commit is contained in:
Justin Maggard
2017-10-06 16:05:01 -07:00
parent 7a27ce3077
commit ad5d6413a7
2 changed files with 6 additions and 2 deletions

View File

@ -571,12 +571,12 @@ monitor_remove_directory(int fd, const char * path)
/* Invalidate the scanner cache so we don't insert files into non-existent containers */
valid_cache = 0;
#ifdef HAVE_INOTIFY
if( fd > 0 )
{
#ifdef HAVE_INOTIFY
remove_watch(fd, path);
#endif
}
#endif
sql = sqlite3_mprintf("SELECT ID from DETAILS where (PATH > '%q/' and PATH <= '%q/%c')"
" or PATH = '%q'", path, path, 0xFF, path);
if( (sql_get_table(db, sql, &result, &rows, NULL) == SQLITE_OK) )