mirror of
https://github.com/transmission/transmission
synced 2024-12-23 16:24:02 +00:00
fix daemon build on platforms without inotify
This commit is contained in:
parent
462e473410
commit
2cb6279a72
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ watchdir_update_impl( dtr_watchdir * w )
|
||||||
|
|
||||||
if( !name || *name=='.' ) /* skip dotfiles */
|
if( !name || *name=='.' ) /* skip dotfiles */
|
||||||
continue;
|
continue;
|
||||||
if( !str_has_suffix( name, ".torrent" ) ) /* skip non-torrents */
|
if( !tr_str_has_suffix( name, ".torrent" ) ) /* skip non-torrents */
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
len = strlen( name );
|
len = strlen( name );
|
||||||
|
|
Loading…
Reference in a new issue