- Disabled file validation for ExecShell too (can exec URLs)

- Compiles without support for compression too
- Latest compiled version


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2146 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-02-10 18:43:40 +00:00
parent b85fdf27fe
commit 301225562e
2 changed files with 4 additions and 2 deletions

View file

@ -1775,8 +1775,10 @@ int CEXEBuild::write_output(void)
INFO_MSG("Datablock optimizer saved %d bytes (~%d.%d%%).\n",db_opt_save,
pc/10,pc%10);
}
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
INFO_MSG("\nUsing %s%s compression.\n\n", compressor->GetName(), build_compress_whole?" (compress whole)":"");
#endif
int total_usize=exeheader_size;

View file

@ -810,7 +810,7 @@ static int NSISCALL ExecuteEntry(entry *entry_)
{
int x;
char *buf0=process_string_fromparm_tobuf(0x00);
char *buf1=process_string_fromparm_tobuf(-0x11);
char *buf1=process_string_fromparm_tobuf(0x11);
char *buf2=process_string_fromparm_tobuf(0x22);
wsprintf(buf3,"%s %s",buf0,buf1);
update_status_text_from_lang(LANG_EXECSHELL, buf3);