From 22822d78db0f00fc5ead168eda07221511fc3a7d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 8 May 1997 23:43:52 +0000 Subject: forgot to rename import_filetab --- PC/import_nt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12