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