mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 18:28:25 +00:00
Correcly warn if dynamic directory is actually no directory
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
committed by
Simon Kelley
parent
26bbf5a314
commit
ea7a05ad43
@@ -151,7 +151,7 @@ void set_dynamic_inotify(int flag, int total_size, struct crec **rhash, int revh
|
|||||||
if (stat(ah->fname, &buf) == -1 || !(S_ISDIR(buf.st_mode)))
|
if (stat(ah->fname, &buf) == -1 || !(S_ISDIR(buf.st_mode)))
|
||||||
{
|
{
|
||||||
my_syslog(LOG_ERR, _("bad dynamic directory %s: %s"),
|
my_syslog(LOG_ERR, _("bad dynamic directory %s: %s"),
|
||||||
ah->fname, strerror(errno));
|
ah->fname, (S_ISDIR(buf.st_mode)) ? strerror(errno) : _("not a directory"));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user