summaryrefslogtreecommitdiff
path: root/sys/src/cmd/webfs/fs.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2022-04-02 19:20:56 +0000
committercinap_lenrek <cinap_lenrek@felloff.net>2022-04-02 19:20:56 +0000
commit8166868375e2994265e4e2dfd788dae2c4b6754f (patch)
tree06d997717b0807fd84bcaab3cb9503f201fa39c8 /sys/src/cmd/webfs/fs.c
parent945fef7ff2ca323f49a2de097e135112a30d47a7 (diff)
webfs: implement RFC2617 qop extension for http digest authentication
Diffstat (limited to 'sys/src/cmd/webfs/fs.c')
-rw-r--r--sys/src/cmd/webfs/fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/webfs/fs.c b/sys/src/cmd/webfs/fs.c
index e4e08670d..80c292c79 100644
--- a/sys/src/cmd/webfs/fs.c
+++ b/sys/src/cmd/webfs/fs.c
@@ -81,7 +81,7 @@ static char *service;
static long time0;
static char *user;
static char *agent;
-static Client client[64];
+static Client client[256];
static int nclient;
#define CLIENTID(c) ((int)(((Client*)(c)) - client))