From af9603a6cfcfbd30bbf18d21ddf3f61b30e8004c Mon Sep 17 00:00:00 2001 From: Nick Ing-Simmons Date: Sun, 18 Nov 2001 19:08:40 +0000 Subject: [PATCH] Win32 layer has a dup which needs to match new prototype. p4raw-id: //depot/perlio@13081 --- win32/win32io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/win32io.c b/win32/win32io.c index 98eb292..3c954d6 100644 --- a/win32/win32io.c +++ b/win32/win32io.c @@ -295,7 +295,7 @@ PerlIOWin32_close(PerlIO *f) } PerlIO * -PerlIOWin32_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *params) +PerlIOWin32_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *params, int flags) { PerlIOWin32 *os = PerlIOSelf(f,PerlIOWin32); HANDLE proc = GetCurrentProcess(); @@ -306,7 +306,7 @@ PerlIOWin32_dup(pTHX_ PerlIO *f, PerlIO *o, CLONE_PARAMS *params) int fd = win32_open_osfhandle((long) new, PerlIOUnix_oflags(PerlIO_modestr(o,mode))); if (fd >= 0) { - f = PerlIOBase_dup(aTHX_ f, o, params); + f = PerlIOBase_dup(aTHX_ f, o, params, flags); if (f) { PerlIOWin32 *fs = PerlIOSelf(f,PerlIOWin32); -- 2.7.4