diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-12 00:51:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-12 00:51:08 +0000 |
commit | 01f988be05578e1f4609174755be9d7b61543c58 (patch) | |
tree | 7ebcceb4314c8b249ec6cc249e699dc385acd199 /win32/runperl.c | |
parent | 3bd495df69b982704c59fc1ecbed71e5112e7da0 (diff) | |
download | perl-01f988be05578e1f4609174755be9d7b61543c58.tar.gz |
[asperl] added AS patch#12 with minor changes
p4raw-id: //depot/asperl@806
Diffstat (limited to 'win32/runperl.c')
-rw-r--r-- | win32/runperl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/runperl.c b/win32/runperl.c index cecdfeb9ff..d00815809b 100644 --- a/win32/runperl.c +++ b/win32/runperl.c @@ -356,6 +356,10 @@ public: { CALLFUNCRET(chmod(filename, pmode)) }; + virtual int Chown(const char *filename, uid_t owner, gid_t group, int &err) + { + CALLFUNCERR(chown(filename, owner, group)) + }; virtual int Chsize(int handle, long size, int &err) { CALLFUNCRET(chsize(handle, size)) |