diff --git a/NEWS b/NEWS index 7a062608..9a4c84eb 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,14 @@ User visible changes for UPX [ UNSTABLE BETA VERSION - please see README.1ST for some more info ] +[ WARNING: there are known bugs in the win32/pe format which cause + crashes on a number of exes ] + +Changes in 1.91 beta (XX Mar 2003): + * UNSTABLE BETA VERSION - DO NOT USE EXCEPT FOR TESTING + * djgpp2/coff: added support for recent binutils versions + * watcom/le: don't crash on files without relocations + Changes in 1.90 beta (11 Nov 2002): * UNSTABLE BETA VERSION - DO NOT USE EXCEPT FOR TESTING * implemented several new options for finer compression control: diff --git a/src/conf.h b/src/conf.h index ad905054..6bb50ad7 100644 --- a/src/conf.h +++ b/src/conf.h @@ -526,7 +526,7 @@ inline void operator delete[](void *p) #define UPX_F_DOS_SYS 2 #define UPX_F_DOS_EXE 3 #define UPX_F_DJGPP2_COFF 4 -#define UPX_F_WC_LE 5 +#define UPX_F_WATCOM_LE 5 #define UPX_F_VXD_LE 6 #define UPX_F_DOS_EXEH 7 /* OBSOLETE */ #define UPX_F_TMT_ADAM 8 diff --git a/src/p_wcle.h b/src/p_wcle.h index 536fe55d..20657b8c 100644 --- a/src/p_wcle.h +++ b/src/p_wcle.h @@ -40,7 +40,7 @@ class PackWcle : public Packer, public LeFile public: PackWcle(InputFile *f) : super(f), LeFile(f){}; virtual int getVersion() const { return 13; } - virtual int getFormat() const { return UPX_F_WC_LE; } + virtual int getFormat() const { return UPX_F_WATCOM_LE; } virtual const char *getName() const { return "watcom/le"; } virtual const int *getCompressionMethods(int method, int level) const; virtual const int *getFilters() const;