Bug fix for fast module location
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index 0adbce1..4d0fb1f 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -895,7 +895,7 @@
 #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;