From 70c498a309c984a1e14a7a72ad5ae891ca70b04d Mon Sep 17 00:00:00 2001 From: "C. Masloch" Date: Thu, 26 May 2022 11:50:39 +0200 Subject: [PATCH] exeflat: update usage screen with -E, -D, and -U switches --- utils/exeflat.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/utils/exeflat.c b/utils/exeflat.c index 02429d9..50c9b7c 100644 --- a/utils/exeflat.c +++ b/utils/exeflat.c @@ -81,9 +81,10 @@ static int compReloc(const void *p1, const void *p2) static void usage(void) { printf("usage: exeflat (src.exe) (dest.sys) (relocation-factor)\n"); - printf - (" -S10 - Silent relocate segment 10 (down list)\n"); - + printf(" -S10 - Silent relocate segment 10 (down list)\n"); + printf(" -E(path/to/upxentry.bin) - Omit to force DOS/SYS compression\n"); + printf(" -D(path/to/upxdevic.bin) - Omit to force DOS/EXE compression\n"); + printf(" -U (command) (parameters) - Specify to use UPX compression\n"); exit(1); }