ebf9b31
diff -up ksh-20120801/src/cmd/ksh93/sh/io.c.fdstatus ksh-20120801/src/cmd/ksh93/sh/io.c
ebf9b31
--- ksh-20120801/src/cmd/ksh93/sh/io.c.fdstatus	2013-07-04 18:01:27.187516655 +0200
ebf9b31
+++ ksh-20120801/src/cmd/ksh93/sh/io.c	2013-07-04 18:01:38.249607392 +0200
ebf9b31
@@ -1508,7 +1508,7 @@ int	sh_redirect(Shell_t *shp,struct iono
ebf9b31
 					fn = fd;
ebf9b31
 					if(fd<10)
ebf9b31
 					{
ebf9b31
-						if((fn=fcntl(fd,F_DUPFD,10)) < 0)
ebf9b31
+						if((fn=sh_fcntl(fd,F_DUPFD,10)) < 0)
ebf9b31
 							goto fail;
ebf9b31
 						if(fn>=shp->gd->lim.open_max && !sh_iovalidfd(shp,fn))
ebf9b31
 							goto fail;
ebf9b31
diff -up ksh-20120801/src/cmd/ksh93/sh/subshell.c.fdstatus ksh-20120801/src/cmd/ksh93/sh/subshell.c
ebf9b31
--- ksh-20120801/src/cmd/ksh93/sh/subshell.c.fdstatus	2012-07-17 23:54:21.000000000 +0200
ebf9b31
+++ ksh-20120801/src/cmd/ksh93/sh/subshell.c	2013-07-04 17:56:20.342000310 +0200
ebf9b31
@@ -122,7 +122,7 @@ void	sh_subtmpfile(Shell_t *shp)
ebf9b31
 		register struct checkpt	*pp = (struct checkpt*)shp->jmplist;
ebf9b31
 		register struct subshell *sp = subshell_data->pipe;
ebf9b31
 		/* save file descriptor 1 if open */
ebf9b31
-		if((sp->tmpfd = fd = fcntl(1,F_DUPFD,10)) >= 0)
ebf9b31
+		if((sp->tmpfd = fd = sh_fcntl(1,F_DUPFD,10)) >= 0)
ebf9b31
 		{
ebf9b31
 			fcntl(fd,F_SETFD,FD_CLOEXEC);
ebf9b31
 			shp->fdstatus[fd] = shp->fdstatus[1]|IOCLEX;
ebf9b31
@@ -554,7 +554,7 @@ Sfio_t *sh_subshell(Shell_t *shp,Shnode_
ebf9b31
 				sp->pwdfd = n;
ebf9b31
 				if(n<10)
ebf9b31
 				{
ebf9b31
-					sp->pwdfd =  fcntl(n,F_DUPFD,10);
ebf9b31
+					sp->pwdfd = sh_fcntl(n,F_DUPFD,10);
ebf9b31
 					close(n);
ebf9b31
 				}
ebf9b31
 				if(sp->pwdfd>0)
ebf9b31
diff -up ksh-20120801/src/cmd/ksh93/sh/xec.c.fdstatus ksh-20120801/src/cmd/ksh93/sh/xec.c
ebf9b31
--- ksh-20120801/src/cmd/ksh93/sh/xec.c.fdstatus	2012-07-23 16:49:32.000000000 +0200
ebf9b31
+++ ksh-20120801/src/cmd/ksh93/sh/xec.c	2013-07-04 17:57:47.153712116 +0200
ebf9b31
@@ -116,7 +116,7 @@ static int iousepipe(Shell_t *shp)
ebf9b31
 		return(0);
ebf9b31
 	usepipe++;
ebf9b31
 	fcntl(subpipe[0],F_SETFD,FD_CLOEXEC);
ebf9b31
-	subpipe[2] = fcntl(1,F_DUPFD,10);
ebf9b31
+	subpipe[2] = sh_fcntl(1,F_DUPFD,10);
ebf9b31
 	fcntl(subpipe[2],F_SETFD,FD_CLOEXEC);
ebf9b31
 	shp->fdstatus[subpipe[2]] = shp->fdstatus[1];
ebf9b31
 	close(1);
ebf9b31
@@ -3622,7 +3622,7 @@ static void coproc_init(Shell_t *shp, in
ebf9b31
 		sh_pipe(shp->cpipe);
ebf9b31
 		if((outfd=shp->cpipe[1]) < 10) 
ebf9b31
 		{
ebf9b31
-		        int fd=fcntl(shp->cpipe[1],F_DUPFD,10);
ebf9b31
+		        int fd=sh_fcntl(shp->cpipe[1],F_DUPFD,10);
ebf9b31
 			if(fd>=10)
ebf9b31
 			{
ebf9b31
 			        shp->fdstatus[fd] = (shp->fdstatus[outfd]&~IOCLEX);