Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(122)

Unified Diff: src/pkg/os/user/lookup_stubs.go

Issue 4589049: code review 4589049: os/user: group lookup functions
Patch Set: diff -r 17e26defe7bc https://go.googlecode.com/hg/ Created 13 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/pkg/os/user/lookup_unix.go » ('j') | src/pkg/os/user/lookup_unix.go » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/os/user/lookup_stubs.go
===================================================================
--- a/src/pkg/os/user/lookup_stubs.go
+++ b/src/pkg/os/user/lookup_stubs.go
@@ -17,3 +17,11 @@
func LookupId(int) (*User, os.Error) {
return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
}
+
+func LookupGroup(groupname string) (*Group, os.Error) {
+ return nil, fmt.Errorf("user: LookupGroup not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
+}
+
+func LookupGroupId(int) (*Group, os.Error) {
+ return nil, fmt.Errorf("user: LookupGroupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
+}
« no previous file with comments | « no previous file | src/pkg/os/user/lookup_unix.go » ('j') | src/pkg/os/user/lookup_unix.go » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b