Correct a godoc comment

Correct the names of the files in the godoc for
pkg/chrootuser/GetUser().

Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>

Closes: #579
Approved by: rhatdan
This commit is contained in:
Nalin Dahyabhai
2018-04-02 15:10:23 -04:00
committed by Atomic Bot
parent 2eb38a0271
commit 94301bab8f

View File

@ -9,7 +9,7 @@ import (
)
// GetUser will return the uid, gid of the user specified in the userspec
// it will use the /etc/password and /etc/shadow files inside of the rootdir
// it will use the /etc/passwd and /etc/group files inside of the rootdir
// to return this information.
// userspace format [user | user:group | uid | uid:gid | user:gid | uid:group ]
func GetUser(rootdir, userspec string) (uint32, uint32, error) {