diff options
author | Omar Polo <op@omarpolo.com> | 2021-02-12 11:32:49 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-02-12 11:32:49 +0000 |
commit | 98ee8406aaf0b3c06d009e75e17594692c1dabb3 (patch) | |
tree | 20ff1d6991e1df74245a4e9b2ddd5ba1d2c38ef5 /server.c | |
parent | a4188b78652d42ce5c6c19d01347e8737dfc509f (diff) |
fix occurrence of (killed) load_file
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -692,7 +692,8 @@ open_dir(struct client *c) /* fallthrough */ case FILE_EXISTS: - load_file(c); + c->next = handle_copy; + start_reply(c, SUCCESS, mime(c->host, c->iri.path)); break; case FILE_DIRECTORY: |