diff options
author | Martin Willi <martin@strongswan.org> | 2007-09-27 07:15:47 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2007-09-27 07:15:47 +0000 |
commit | 93720075df0498f1ad60ed1d510045814b5207f1 (patch) | |
tree | ec3d6739b9019710093d017448d5ca306eaf1880 /src/manager/lib/request.c | |
parent | 324abae2ef4e68d54fc3a3a4271fb5bafff8171a (diff) | |
download | strongswan-93720075df0498f1ad60ed1d510045814b5207f1.tar.bz2 strongswan-93720075df0498f1ad60ed1d510045814b5207f1.tar.xz |
implemented SHA1 encrypted passwords for manager
Diffstat (limited to 'src/manager/lib/request.c')
-rw-r--r-- | src/manager/lib/request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manager/lib/request.c b/src/manager/lib/request.c index 42cd9df2c..4623b3860 100644 --- a/src/manager/lib/request.c +++ b/src/manager/lib/request.c @@ -62,12 +62,12 @@ struct private_request_t { * ClearSilver cgiwrap is not threadsave, so we use a private * context for each thread. */ -__thread FCGX_Request *req; +static __thread FCGX_Request *req; /** * length of param list in req->envp */ -__thread int req_env_len; +static __thread int req_env_len; /** * fcgiwrap read callback |