Skip to content

Commit

Permalink
Or was this the problem?
Browse files Browse the repository at this point in the history
  • Loading branch information
cinderblock committed Dec 28, 2019
1 parent a850a02 commit cf4890c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/userid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@ Object Uid(const CallbackInfo &info)

Object Init(Env env, Object exports)
{
exports["uid"] = &Uid;
exports["username"] = &UserName;
exports["gid"] = &Gid;
exports["gids"] = &Gids;
exports["groupname"] = &GroupName;
exports["uid"] = Function::New(env, &Uid);
exports["username"] = Function::New(env, &UserName);
exports["gid"] = Function::New(env, &Gid);
exports["gids"] = Function::New(env, &Gids);
exports["groupname"] = Function::New(env, &GroupName);

return exports;
}
Expand Down

0 comments on commit cf4890c

Please sign in to comment.