We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2da225e + ad3249e commit 69c8f94Copy full SHA for 69c8f94
src/libc.jl
@@ -73,6 +73,7 @@ function User(name::String)
73
Cpasswd()
74
end
75
76
+ systemerror(:getpwnam, ps == C_NULL)
77
User(ps)
78
79
@@ -83,6 +84,7 @@ function User(uid::UInt)
83
84
85
86
87
+ systemerror(:getpwuid, ps == C_NULL)
88
89
90
@@ -110,6 +112,7 @@ function Group(name::String)
110
112
Cgroup()
111
113
114
115
+ systemerror(:getgrnam, ps == C_NULL)
116
Group(ps)
117
118
@@ -120,6 +123,7 @@ function Group(gid::UInt)
120
123
121
124
122
125
126
+ systemerror(:getgrgid, gr == C_NULL)
127
Group(gr)
128
129
0 commit comments