X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=blobdiff_plain;f=group.go;h=018a0c32716c665c690c78903b6eccdb5435ac54;hp=b96f6b14aa4c779cc59c1ebc4498c96a5fefcdb2;hb=HEAD;hpb=bfa96c6bded3a8a4edab666f12429b0659e30ad2 diff --git a/group.go b/group.go index b96f6b1..018a0c3 100644 --- a/group.go +++ b/group.go @@ -1,6 +1,6 @@ // Parse /etc/group files and serialize them -// Copyright (C) 2019 Simon Ruderich +// Copyright (C) 2019-2021 Simon Ruderich // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by @@ -23,10 +23,10 @@ import ( "encoding/binary" "fmt" "io" + "math" "sort" "strconv" "strings" - "math" "github.com/pkg/errors" ) @@ -194,7 +194,7 @@ func SerializeGroups(w io.Writer, grs []Group) error { tmp := make([]byte, 8) // Create index "sorted" in input order, used when iterating over all - // passwd entries (getgrent_r); keeping the original order makes + // group entries (getgrent_r); keeping the original order makes // debugging easier var indexOrig bytes.Buffer for _, g := range grs {