diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-03 11:09:39 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-03 11:09:39 +0000 |
commit | ae1951c189f1b82f18b60e8a8dae5f87c3eedec8 (patch) | |
tree | 73a4c1c0d932e79ae6b4237b48757a1d9f568d4b /proto.h | |
parent | 5d329e6ec94ef5c5ac1218b95aaf35eb2c75b434 (diff) | |
download | perl-ae1951c189f1b82f18b60e8a8dae5f87c3eedec8.tar.gz |
Patch 3945 was a bit overkeen - the effective parameter to cando() and
ingroup() is a boolean flag, not a GID or UID.
p4raw-id: //depot/perl@25969
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -184,7 +184,7 @@ PERL_CALLCONV void Perl_boot_core_PerlIO(pTHX); PERL_CALLCONV void Perl_call_list(pTHX_ I32 oldscope, AV* av_list) __attribute__nonnull__(pTHX_2); -PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, Uid_t effective, const Stat_t* statbufp) +PERL_CALLCONV bool Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t* statbufp) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_3); @@ -713,7 +713,7 @@ PERL_CALLCONV I32 Perl_ibcmp_utf8(pTHX_ const char* a, char **pe1, UV l1, bool u __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_5); -PERL_CALLCONV bool Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective) +PERL_CALLCONV bool Perl_ingroup(pTHX_ Gid_t testgid, bool effective) __attribute__warn_unused_result__; PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv) |