From db83cb7fb9caa951e643d32cf475504082fed641 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 23 Feb 2024 11:11:26 -0600 Subject: [PATCH] typo --- configfile.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configfile.go b/configfile.go index 771c163..a65de5c 100644 --- a/configfile.go +++ b/configfile.go @@ -47,10 +47,10 @@ func (v *RepoList) InitRepoList(cfgfile string) { case "readonly": if option[1] == "true" { log.Log(REPOWARN, repodir, "setting ReadOnly to true") - private = true + readonly = true } else { log.Log(REPOWARN, repodir, "setting ReadOnly to false") - private = false + readonly = false } case "userdir": if option[1] == "true" {