diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-11-13 14:43:29 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-11-13 14:43:29 +0100 |
commit | d3f36e5978e85a926c497e2aa2cbdf319776ebb5 (patch) | |
tree | 9ae8fe6b70a01c299ef4c6f0edccb70cc48d8f19 | |
parent | b7c0e93ebd40cdc4f6e89067a3e5f7293263c7f9 (diff) | |
download | bird-d3f36e5978e85a926c497e2aa2cbdf319776ebb5.tar bird-d3f36e5978e85a926c497e2aa2cbdf319776ebb5.zip |
Fixes BIRD socket unlink.
-rw-r--r-- | sysdep/unix/main.c | 2 |
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"); } |