mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-03 22:08:25 -04:00
win32: remove lock file upon shutdown
Upon named shutdown, the lock file should not just be unlocked but also removed.
This commit is contained in:
parent
9fceb376c6
commit
c506077da5
1 changed files with 2 additions and 2 deletions
|
|
@ -348,9 +348,9 @@ named_os_shutdown(void) {
|
|||
if (lockfilefd != -1) {
|
||||
(void) UnlockFile((HANDLE) _get_osfhandle(lockfilefd),
|
||||
0, 0, 0, 1);
|
||||
close(lockfilefd);
|
||||
lockfilefd = -1;
|
||||
}
|
||||
cleanup_lockfile();
|
||||
|
||||
ntservice_shutdown(); /* This MUST be the last thing done */
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue