diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-08 16:29:30 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-08 16:29:30 +0200 |
commit | d69e5ff2ad8b552c22770e4c85bd7c5afafe2816 (patch) | |
tree | 56072205b1064c3ac78853e7723dc50f1f46fa9d | |
parent | cd44b466515578583d46dcb1a0abdae6e658a166 (diff) | |
download | bird-d69e5ff2ad8b552c22770e4c85bd7c5afafe2816.tar bird-d69e5ff2ad8b552c22770e4c85bd7c5afafe2816.zip |
Use PATH_CONTROL_SOCKET instead of tacking on "bird.ctl" manually.
-rw-r--r-- | client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client.c b/client/client.c index 5381577..c57627f 100644 --- a/client/client.c +++ b/client/client.c @@ -26,7 +26,7 @@ static char *opt_list = "s:v"; static int verbose; -static char *server_path = PATH_CONTROL_SOCKET_DIR "/bird.ctl"; +static char *server_path = PATH_CONTROL_SOCKET; static int server_fd; static int server_reply; static byte server_read_buf[4096]; |