diff options
-rw-r--r-- | stream.c | 2 | ||||
-rw-r--r-- | sysif.c | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -4517,7 +4517,7 @@ static val run(val command, val args) uw_simple_catch_begin; - fds_swizzle(&sfds, FDS_IN | FDS_OUT | FDS_ERR); + fds_swizzle(&sfds, FDS_IN | FDS_OUT | FDS_ERR, self); if (nargs < 0 || nargs == INT_MAX) uw_throwf(error_s, lit("~a: argument list overflow"), self, nao); @@ -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; } |