Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Dnsmasq
Commits
77607cbe
Commit
77607cbe
authored
Sep 10, 2015
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Respect the --no-resolv flag in inotify code.
parent
102208df
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
CHANGELOG
CHANGELOG
+6
-1
debian/changelog
debian/changelog
+6
-0
src/inotify.c
src/inotify.c
+3
-0
No files found.
CHANGELOG
View file @
77607cbe
...
@@ -7,8 +7,13 @@ version 2.76
...
@@ -7,8 +7,13 @@ version 2.76
Enhance --add-subnet to allow arbitrary subnet addresses.
Enhance --add-subnet to allow arbitrary subnet addresses.
Thanks to Ed Barsley for the patch.
Thanks to Ed Barsley for the patch.
Respect the --no-resolv flag in inotify code. Fixes bug
which caused dnsmasq to fail to start if a resolv-file
was a dangling symbolic link, even of --no-resolv set.
Thanks to Alexander Kurtz for spotting the problem.
version 2.75
version 2.75
Fix reversion on 2.74 which caused 100% CPU use when a
Fix reversion on 2.74 which caused 100% CPU use when a
dhcp-script is configured. Thanks to Adrian Davey for
dhcp-script is configured. Thanks to Adrian Davey for
...
...
debian/changelog
View file @
77607cbe
dnsmasq (2.76-1) unstable; urgency=low
* New upstream. (closes: #798586)
-- Simon Kelley <simon@thekelleys.org.uk> Thur, 10 Sep 2015 23:07:21 +0000
dnsmasq (2.75-1) unstable; urgency=low
dnsmasq (2.75-1) unstable; urgency=low
* New upstream. (closes: #794095)
* New upstream. (closes: #794095)
...
...
src/inotify.c
View file @
77607cbe
...
@@ -90,6 +90,9 @@ void inotify_dnsmasq_init()
...
@@ -90,6 +90,9 @@ void inotify_dnsmasq_init()
if
(
daemon
->
inotifyfd
==
-
1
)
if
(
daemon
->
inotifyfd
==
-
1
)
die
(
_
(
"failed to create inotify: %s"
),
NULL
,
EC_MISC
);
die
(
_
(
"failed to create inotify: %s"
),
NULL
,
EC_MISC
);
if
(
option_bool
(
OPT_NO_RESOLV
))
return
;
for
(
res
=
daemon
->
resolv_files
;
res
;
res
=
res
->
next
)
for
(
res
=
daemon
->
resolv_files
;
res
;
res
=
res
->
next
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment