summaryrefslogtreecommitdiffstats
path: root/sysdep
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-11-13 14:43:29 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2009-11-13 14:43:29 +0100
commitd3f36e5978e85a926c497e2aa2cbdf319776ebb5 (patch)
tree9ae8fe6b70a01c299ef4c6f0edccb70cc48d8f19 /sysdep
parentb7c0e93ebd40cdc4f6e89067a3e5f7293263c7f9 (diff)
downloadbird-d3f36e5978e85a926c497e2aa2cbdf319776ebb5.tar
bird-d3f36e5978e85a926c497e2aa2cbdf319776ebb5.zip
Fixes BIRD socket unlink.
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/unix/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c
index 17845d2..75944c5 100644
--- a/sysdep/unix/main.c
+++ b/sysdep/unix/main.c
@@ -313,7 +313,7 @@ async_shutdown(void)
void
sysdep_shutdown_done(void)
{
- unlink(PATH_CONTROL_SOCKET);
+ unlink(path_control_socket);
die("System shutdown completed");
}