Corrected cfgparse return values
Accidentally changed the return value to not return anything everstable
parent
1d3f426beb
commit
17d3abc90a
|
|
@ -129,7 +129,7 @@ func cfgparse (cfgloc string) ([]string, []string, error){
|
|||
log.Print(err)
|
||||
return nil, nil, err
|
||||
}
|
||||
return nil, nil, err
|
||||
return sites, downloads, err
|
||||
}
|
||||
func cfgparseline(buf string) (uint8, string){
|
||||
// State options
|
||||
|
|
|
|||
Loading…
Reference in New Issue