1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-22 16:45:58 +01:00

Fix typo in ReadPublicGroups.

This commit is contained in:
Juliusz Chroboczek 2021-01-14 01:45:50 +01:00
parent 98235afe06
commit 2df05ca257

View file

@ -829,6 +829,7 @@ func ReadPublicGroups() {
func(path string, fi os.FileInfo, err error) error { func(path string, fi os.FileInfo, err error) error {
if err != nil { if err != nil {
log.Printf("Group file %v: %v", path, err) log.Printf("Group file %v: %v", path, err)
return nil
} }
if fi.IsDir() { if fi.IsDir() {
return nil return nil
@ -859,6 +860,6 @@ func ReadPublicGroups() {
) )
if err != nil { if err != nil {
log.Printf("Couldn't read groups: %v", err); log.Printf("Couldn't read groups: %v", err)
} }
} }