diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-11-02 18:01:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-11-02 18:01:21 +0000 |
commit | bf5919621049e6d5229a5c77b669902ff0888f67 (patch) | |
tree | 7189a7239fd5acb3dde4bf3bb1b80441707075a2 | |
parent | 15689010d82050a2c02fc94ccd5d5d748e306cd0 (diff) | |
download | perl-bf5919621049e6d5229a5c77b669902ff0888f67.tar.gz |
Stas spotted a missed s//new_/ for the hash seed renaming games
p4raw-id: //depot/perl@21618
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -945,7 +945,7 @@ setuid perl scripts securely.\n"); * If you set PL_hash_seed (and assumedly also PL_hash_seed_set) yourself, * it is your responsibility to provide a good random seed! * You can also define PERL_HASH_SEED in compile time, see hv.h. */ - if (!PL_hash_seed_set) + if (!PL_new_hash_seed_set) PL_new_hash_seed = get_hash_seed(); { char *s = PerlEnv_getenv("PERL_HASH_SEED_DEBUG"); |