diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-20 01:27:14 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-20 01:27:14 +0000 |
commit | 045c1f128ac729dc76c4da7e8ffe34bf12692b94 (patch) | |
tree | a7254bba507db0094f630e1aa80e8fdcebb78104 /ext/DynaLoader | |
parent | 781449de0eec49aa3d5ffc738eb3d41f44325f75 (diff) | |
parent | f77c86d0713b4b3c1315af23f2108fe7c0059832 (diff) | |
download | perl-045c1f128ac729dc76c4da7e8ffe34bf12692b94.tar.gz |
integrate ansi branch to get s/foo/PL_foo/ changes
p4raw-id: //depot/perl@1575
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r-- | ext/DynaLoader/dl_next.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DynaLoader/dl_next.xs b/ext/DynaLoader/dl_next.xs index e35c251c55..48ec49cd82 100644 --- a/ext/DynaLoader/dl_next.xs +++ b/ext/DynaLoader/dl_next.xs @@ -191,7 +191,7 @@ static char *dlopen(char *path, int mode /* mode is ignored */) if (rld_success) { result = path; /* prevent multiple loads of same file into same process */ - hv_store(dl_loaded_files, path, strlen(path), &sv_yes, 0); + hv_store(dl_loaded_files, path, strlen(path), &PL_sv_yes, 0); } else { TransferError(nxerr); result = (char*) 0; |