| author | |
| committer | |
| log | 2eb09092065715642e93d9cfd54196840a314bc0 |
| tree | e20e0f557ca3a8f6e7ac68ab73f09b755d20ffc6 |
| parent | 91b05ad473b4d16e9a50a83f2655599ce177e767 |
17b0166e moved getUserInfo from std.os to std.process
but ChildProcess.setUserName never updated the pkg name.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/child_process.zig+1-1| ... | ... | @@ -122,7 +122,7 @@ pub const ChildProcess = struct { |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | pub fn setUserName(self: *ChildProcess, name: []const u8) !void { |
| 125 | const user_info = try os.getUserInfo(name); | |
| 125 | const user_info = try std.process.getUserInfo(name); | |
| 126 | 126 | self.uid = user_info.uid; |
| 127 | 127 | self.gid = user_info.gid; |
| 128 | 128 | } |