From 079461efdc091d64e08b5d96e0be1bd03928a27e Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 14 Dec 2000 07:08:15 +0000 Subject: [PATCH] Modified getVersion() to return 11, to accomodate for our generic packheader code. All new executable formats should start with version 11. committer: mfx 976777695 +0000 --- src/p_vmlinz.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_vmlinz.h b/src/p_vmlinz.h index 49082ae7..2f07b802 100644 --- a/src/p_vmlinz.h +++ b/src/p_vmlinz.h @@ -39,7 +39,7 @@ class PackVmlinuzI386 : public Packer typedef Packer super; public: PackVmlinuzI386(InputFile *f); - virtual int getVersion() const { return 1; } + virtual int getVersion() const { return 11; } virtual int getFormat() const { return UPX_F_VMLINUZ_i386; } virtual const char *getName() const { return "vmlinuz/386"; } virtual int getCompressionMethod() const;