diff options
author | Guido van Rossum <guido@python.org> | 1997-05-08 23:43:52 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-08 23:43:52 +0000 |
commit | acaa4ef5b32acb3fb773ca870f16121080899da6 (patch) | |
tree | 903ecba13b148f71f2103c759612515dbd6edc8b /PC/import_nt.c | |
parent | 92aa165d495fb1cd566d6d41e46b1316c3f49ae5 (diff) | |
download | cpython-acaa4ef5b32acb3fb773ca870f16121080899da6.tar.gz |
forgot to rename import_filetab
Diffstat (limited to 'PC/import_nt.c')
-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 e340bb99c6..022b9e5aed 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; |