1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

Apply suggestions from code review

This commit is contained in:
Falk Werner 2023-02-01 18:38:40 +01:00 committed by GitHub
parent 6214748495
commit 7a131d6024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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);