summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysif.c b/sysif.c
index 5830ffc0..f636d4f1 100644
--- a/sysif.c
+++ b/sysif.c
@@ -1809,6 +1809,7 @@ static val getpwent_wrap(void)
static val getpwuid_wrap(val uid)
{
+ val self = lit("getpwuid");
struct passwd *p = getpwuid(c_num(uid, self));
return (p != 0) ? make_pwstruct(p) : nil;
}