From 7a131d60243d87122160b5ece034ee95966ce101 Mon Sep 17 00:00:00 2001 From: Falk Werner <47070255+falk-werner@users.noreply.github.com> Date: Wed, 1 Feb 2023 18:38:40 +0100 Subject: [PATCH] Apply suggestions from code review --- doc/authentication.md | 2 +- src/webfuse/request_type.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/authentication.md b/doc/authentication.md index 6292dc8..3e4cd19 100644 --- a/doc/authentication.md +++ b/doc/authentication.md @@ -5,7 +5,7 @@ Webfuse supports two authentications mechanisms: - token-based authentication using HTTP headers - in-protocol authentication -To activate authentication, two command line option needs to be given: +To activate authentication, two command line option can be specified: - `--wf-authenticator PATH` allows to specify an executable used for authentication diff --git a/src/webfuse/request_type.hpp b/src/webfuse/request_type.hpp index 0016b65..a66d763 100644 --- a/src/webfuse/request_type.hpp +++ b/src/webfuse/request_type.hpp @@ -31,7 +31,7 @@ enum class request_type: uint8_t rmdir = 0x14, statfs = 0x15, utimens = 0x16, - getcreds =0x17 + getcreds = 0x17 }; request_type get_request_type(uint8_t value);