diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-08-19 15:48:50 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-08-19 15:48:50 +0000 |
commit | 7d0f3877f649103dfa564e4c3e1c03951ce80033 (patch) | |
tree | 24bd2a23fbff00a4262d0311439d7fb764b2bb9f | |
parent | OpenVPN version 2.1_rc19 released (diff) | |
download | openvpn-7d0f3877f649103dfa564e4c3e1c03951ce80033.tar.xz |
Fixed build problem when ./configure --disable-server is used.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4836 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r-- | manage.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -995,10 +995,12 @@ man_dispatch_command (struct management *man, struct status_output *so, const ch { msg (M_CLIENT, "SUCCESS: pid=%d", openvpn_getpid ()); } +#ifdef MANAGEMENT_DEF_AUTH else if (streq (p[0], "nclients")) { man_client_n_clients (man); } +#endif else if (streq (p[0], "signal")) { if (man_need (man, p, 1, 0)) |