From: Jack Jansen Date: Wed, 8 Oct 1997 15:32:46 +0000 (+0000) Subject: Bug fix for fast module location X-Git-Tag: v1.5a4~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=213649023cfb7a5d3a9141bc10f501513f7bb42d;p=python Bug fix for fast module location --- diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 0adbce1036..4d0fb1f77e 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -895,7 +895,7 @@ PyMac_FindModuleExtension(char *buf, int *lenp, char *module) #if 0 strcpy(buf+*lenp+modnamelen, fdp->suffix); #else - strcpy(buf+*lenp+modnamelen, fdp->suffix); + strcpy(buf+*lenp, fdp->suffix); #endif *lenp = strlen(buf); return fdp;