diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-20 04:54:53 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-20 04:54:53 +0000 |
commit | cb5953d685cec7d1e5d677ac4d2ddbe33ef0a803 (patch) | |
tree | e9a08ee62f26a14c0e39ec84ea16f867ce892576 /vos | |
parent | 6002328acc4eebf94540b6802dbffeac7367da7a (diff) | |
download | perl-cb5953d685cec7d1e5d677ac4d2ddbe33ef0a803.tar.gz |
After some reading I don't think we can blindly
use systems' realpath(). Too many security problems,
too many buggy implementations.
TODO: the realpath() emulation code in util.c doesn't
seem fully operational? (readlink(), for example?)
p4raw-id: //depot/perl@10744
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 6 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 6 |
4 files changed, 0 insertions, 14 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index 23196501c3..006551691c 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -194,7 +194,6 @@ $d_quad='undef' $d_readdir='define' $d_readlink='define' $d_readv='undef' -$d_realpath='undef' $d_recvmsg='undef' $d_rename='define' $d_rewinddir='define' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 54dfc0c7fe..3f47acfcd0 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -3368,12 +3368,6 @@ */ /*#define HAS_FLOCK_PROTO /**/ -/* HAS_REALPATH: - * This symbol, if defined, indicates that the realpath routine is - * available to do resolve paths. - */ -/*#define HAS_REALPATH /**/ - /* HAS_SIGPROCMASK: * This symbol, if defined, indicates that the sigprocmask * system call is available to examine or change the signal mask diff --git a/vos/config.ga.def b/vos/config.ga.def index 9a0a02cf98..4d49cf53ad 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -194,7 +194,6 @@ $d_quad='undef' $d_readdir='define' $d_readlink='define' $d_readv='undef' -$d_realpath='undef' $d_recvmsg='undef' $d_rename='define' $d_rewinddir='define' diff --git a/vos/config.ga.h b/vos/config.ga.h index 8c4dd35376..5b283e3f13 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -3368,12 +3368,6 @@ */ /*#define HAS_FLOCK_PROTO /**/ -/* HAS_REALPATH: - * This symbol, if defined, indicates that the realpath routine is - * available to do resolve paths. - */ -/*#define HAS_REALPATH /**/ - /* HAS_SIGPROCMASK: * This symbol, if defined, indicates that the sigprocmask * system call is available to examine or change the signal mask |