callfcgi: Use the library mtio pipes instead of kernel pipes.
authorFredrik Tolf <fredrik@dolda2000.com>
Mon, 3 Mar 2014 00:08:05 +0000 (01:08 +0100)
committerFredrik Tolf <fredrik@dolda2000.com>
Mon, 3 Mar 2014 00:08:05 +0000 (01:08 +0100)
src/callfcgi.c

index 9f30f00..e1d71f2 100644 (file)
@@ -608,15 +608,6 @@ static int begreq(FILE *out, int rid)
     return(sendrec(out, FCGI_BEGIN_REQUEST, rid, rec, 8));
 }
 
-static void mtiopipe(FILE **read, FILE **write)
-{
-    int fds[2];
-    
-    pipe(fds);
-    *read = mtstdopen(fds[0], 0, 600, "r");
-    *write = mtstdopen(fds[1], 0, 600, "w");
-}
-
 static void outplex(struct muth *muth, va_list args)
 {
     vavar(FILE *, sk);