summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-05 16:54:57 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-05 16:54:57 -0400
commit4d51c5958dce97f8ba0c5a751c9b3e31ae0fb135 (patch)
treecf83aff462b33846d6c8ce04a3f8a7fab8b9561c /config.c
parentaf56e08986b69cc74a6d3177e90986793efcffb7 (diff)
Fixed typo in config option format comment.
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.c b/config.c
index cd9d7df..7e25f34 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
#include <string.h>
static const config_opt config_opts[] = {
- /* {"name", "desc", type, &var} */
+ /* {"name", "desc", type, var} */
{"git-root", "Root of git server (can also be a url).", TYPE_STRING, git_root},
{"socket-type", "Socket type to use (options: unix, network. default: network).", TYPE_STRING, sock_type},
{"socket", "Path, IP address, or domain name of socket.", TYPE_STRING, sock},