Corrected cfgparse return values

Accidentally changed the return value to not return anything ever
stable
Justin Reichardt 2021-12-09 18:06:23 -06:00
parent 1d3f426beb
commit 17d3abc90a
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ func cfgparse (cfgloc string) ([]string, []string, error){
log.Print(err) log.Print(err)
return nil, nil, err return nil, nil, err
} }
return nil, nil, err return sites, downloads, err
} }
func cfgparseline(buf string) (uint8, string){ func cfgparseline(buf string) (uint8, string){
// State options // State options