mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Fix typo in ReadPublicGroups.
This commit is contained in:
parent
98235afe06
commit
2df05ca257
1 changed files with 2 additions and 1 deletions
|
@ -829,6 +829,7 @@ func ReadPublicGroups() {
|
|||
func(path string, fi os.FileInfo, err error) error {
|
||||
if err != nil {
|
||||
log.Printf("Group file %v: %v", path, err)
|
||||
return nil
|
||||
}
|
||||
if fi.IsDir() {
|
||||
return nil
|
||||
|
@ -859,6 +860,6 @@ func ReadPublicGroups() {
|
|||
)
|
||||
|
||||
if err != nil {
|
||||
log.Printf("Couldn't read groups: %v", err);
|
||||
log.Printf("Couldn't read groups: %v", err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue