From 59db20fbc13696beb82dff37fac863f8761b2d8d Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 5 Jan 2000 01:47:30 +0000 Subject: [PATCH] Made virus warning a bit more drastic, since some people don't believe us. --- loader/pe_image.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loader/pe_image.c b/loader/pe_image.c index b0193968718..5324ee8b999 100644 --- a/loader/pe_image.c +++ b/loader/pe_image.c @@ -554,9 +554,9 @@ HMODULE PE_LoadImage( HANDLE hFile, LPCSTR filename, WORD *version ) /* Check entrypoint address */ aoep = nt->OptionalHeader.AddressOfEntryPoint; if (aoep && (aoep < lowest_va)) - FIXME("WARNING: '%s' has an invalid entrypoint (0x%08lx) " + FIXME("VIRUS WARNING: '%s' has an invalid entrypoint (0x%08lx) " "below the first virtual address (0x%08x) " - "(possible Virus Infection or broken binary)!\n", + "(possibly infected by Tchernobyl/SpaceFiller virus)!\n", filename, aoep, lowest_va );