From 1755d287f3cd52e739bf5b2e7392f894ee82d469 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Fri, 3 Sep 2010 06:56:24 +0200 Subject: [PATCH] userplex: Actually open stdout and stderr for writing... --- src/userplex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/userplex.c b/src/userplex.c index 565884d..77f79d7 100644 --- a/src/userplex.c +++ b/src/userplex.c @@ -80,12 +80,12 @@ static void login(struct passwd *pwd) /* There's whole load of other stuff one could want to do here -- * getting Kerberos credentials, running PAM session modules, and * who knows what. I'll add them along as I find them useful. */ - if(((fd = open(".ashd/output", O_APPEND)) >= 0) || + if(((fd = open(".ashd/output", O_WRONLY | O_APPEND)) >= 0) || ((fd = open("/dev/null", 0)) >= 0)) { dup2(fd, 1); close(fd); } - if(((fd = open(".ashd/error", O_APPEND)) >= 0) || + if(((fd = open(".ashd/error", O_WRONLY | O_APPEND)) >= 0) || ((fd = open("/dev/null", 0)) >= 0)) { dup2(fd, 2); close(fd); -- 2.11.0