diff --git a/Makefile b/Makefile index 958c741..19e35a0 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ LIBS_release= # target configuration TARGET := fileshare -VERSION := 0.2.1 +VERSION := 0.2.2 VCSVERSION := $(shell git rev-parse --short HEAD) # source files for the project diff --git a/src/main.c b/src/main.c index d582d95..ee195d3 100644 --- a/src/main.c +++ b/src/main.c @@ -255,11 +255,11 @@ int serv_directory(struct MHD_Connection *connection, struct ConnectionState *co struct MHD_Response *response; int ret; - LOG(LVL_DEBUG, "Generating directory listing for %s.", connstate->localFileName); + LOG(LVL_DEBUG, "Generating directory listing for %s .", connstate->localFileName); char *result = create_dirlisting(connstate->cleanedURL, connstate->localFileName, uploadEnabled); if(!result) { - LOG(LVL_ERR, "Failed to generate dirlisting for %s.", connstate->localFileName); + LOG(LVL_ERR, "Failed to generate dirlisting for %s .", connstate->localFileName); return MHD_queue_response(connection, MHD_HTTP_INTERNAL_SERVER_ERROR, error500Response); }