diff options
author | Guido van Rossum <guido@python.org> | 1997-05-08 23:43:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-08 23:43:52 (GMT) |
commit | 22822d78db0f00fc5ead168eda07221511fc3a7d (patch) | |
tree | 26c669c5a3861e3f56041b1cecdbeae2bead7db2 /PC | |
parent | d0e8436e19efe707055f3b1cabcf08e63f684706 (diff) | |
download | cpython-22822d78db0f00fc5ead168eda07221511fc3a7d.zip cpython-22822d78db0f00fc5ead168eda07221511fc3a7d.tar.gz cpython-22822d78db0f00fc5ead168eda07221511fc3a7d.tar.bz2 |
forgot to rename import_filetab
Diffstat (limited to 'PC')
-rw-r--r-- | PC/import_nt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/import_nt.c b/PC/import_nt.c index e340bb9..022b9e5 100644 --- a/PC/import_nt.c +++ b/PC/import_nt.c @@ -25,7 +25,7 @@ FILE *PyWin_FindRegisteredModule( const char *moduleName, struct filedescr **ppF if (RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize)!=ERROR_SUCCESS) return NULL; // use the file extension to locate the type entry. - for (fdp = import_filetab; fdp->suffix != NULL; fdp++) { + for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { int extLen=strlen(fdp->suffix); if (modNameSize>extLen && strnicmp(pathBuf+(modNameSize-extLen-1),fdp->suffix,extLen)==0) break; |