Split some string constants to avoid possible RCS keyword expansions.

committer: mfx <mfx> 983457621 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2001-03-01 14:40:21 +00:00
parent 81c58d9727
commit 6dbdef9d57
2 changed files with 9 additions and 4 deletions

View File

@ -926,14 +926,18 @@ char const *Packer::identstr(unsigned &size)
{
static const char identbig[] =
"\n\0"
"$Info: This file is packed with the UPX executable packer http://upx.tsx.org $"
"$Info: "
"This file is packed with the UPX executable packer http://upx.tsx.org $"
"\n\0"
"$Id: UPX " UPX_VERSION_STRING4 " Copyright (C) 1996-2001 the UPX Team. All Rights Reserved. $"
"$Id: UPX "
UPX_VERSION_STRING4
" Copyright (C) 1996-2001 the UPX Team. All Rights Reserved. $"
"\n";
static const char identsmall[] =
"\n"
"$Id: UPX (C) 1996-2001 the UPX Team. All Rights Reserved. http://upx.tsx.org $"
"$Id: UPX "
"(C) 1996-2001 the UPX Team. All Rights Reserved. http://upx.tsx.org $"
"\n";
if (opt->small) {

View File

@ -29,7 +29,8 @@
; ------------- COPYRIGHT -------------
db 10
db '$Id: UPX (C) 1996-2001 the UPX Team. All Rights Reserved. http://upx.tsx.org $'
db '$Id: UPX '
db '(C) 1996-2001 the UPX Team. All Rights Reserved. http://upx.tsx.org $'
db 10,0