From 5233de245463c1ab686fb0044889209c4b3af6a6 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sat, 6 Jun 2020 15:08:12 +0200 Subject: [PATCH] removed service timeout die to api change of webfuse --- src/main.c | 4 +--- src/static_filesystem/main.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main.c b/src/main.c index 18fe42e..261fb9b 100644 --- a/src/main.c +++ b/src/main.c @@ -11,8 +11,6 @@ #include "webfuse_provider.h" -#define SERVICE_TIMEOUT (1 * 1000) - struct config { char * url; @@ -368,7 +366,7 @@ int main(int argc, char* argv[]) while (!shutdown_requested) { - wfp_client_service(client, SERVICE_TIMEOUT); + wfp_client_service(client); } wfp_client_dispose(client); diff --git a/src/static_filesystem/main.c b/src/static_filesystem/main.c index 6d0b6f7..6596af4 100644 --- a/src/static_filesystem/main.c +++ b/src/static_filesystem/main.c @@ -7,8 +7,6 @@ #include "webfuse_provider.h" #include "static_filesystem.h" -#define SERVICE_TIMEOUT (1 * 1000) - struct args { char const * url; @@ -93,7 +91,7 @@ int main(int argc, char* argv[]) while (!shutdown_requested) { - wfp_client_service(client, SERVICE_TIMEOUT); + wfp_client_service(client); } wfp_client_dispose(client);