Index: branches/meklort/i386/boot2/modules.c =================================================================== --- branches/meklort/i386/boot2/modules.c (revision 338) +++ branches/meklort/i386/boot2/modules.c (revision 339) @@ -517,7 +517,7 @@ i += strlen((char*)&bind_stream[i]); //printf("BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM: %s, 0x%X\n", symbolName, symboFlags); - symbolAddr = lookup_external_all(symbolName); + symbolAddr = lookup_all_symbols(symbolName); break; @@ -827,7 +827,7 @@ // Look for symbols using the Smbols moduel function. // If non are found, look through the list of module symbols -unsigned int lookup_external_all(const char* name) +unsigned int lookup_all_symbols(const char* name) { unsigned int addr = 0xFFFFFFFF; if(lookup_symbol) @@ -904,7 +904,7 @@ getc(); // Patch stub - void* symbolAddress = (void*)lookup_external_all(symbolString + symbolEntry->n_un.n_strx); + void* symbolAddress = (void*)lookup_all_symbols(symbolString + symbolEntry->n_un.n_strx); if((0xFFFFFFFF == (UInt32)symbolAddress) && strcmp(symbolString + symbolEntry->n_un.n_strx, SYMBOL_DYLD_STUB_BINDER) != 0) Index: branches/meklort/i386/boot2/modules.h =================================================================== --- branches/meklort/i386/boot2/modules.h (revision 338) +++ branches/meklort/i386/boot2/modules.h (revision 339) @@ -44,6 +44,6 @@ unsigned int handle_symtable(UInt32 base, struct symtab_command* symtabCommand, char* symbolStub, char* nonlazy); -unsigned int lookup_external_all(const char* name); +unsigned int lookup_all_symbols(const char* name); #endif /* __BOOT_MODULES_H */ \ No newline at end of file