From 6ba786734ba6f4e893bbfd32bc91ef542f5242ba Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 29 May 2003 08:46:55 +0000 Subject: [PATCH] SectionIn RO should not override /o git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2589 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/script.cpp b/Source/script.cpp index 4ba4d6b5..c87afb7d 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -2238,7 +2238,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line, FILE *fp, const char char *p=line.gettoken_str(wt); if (p[0]=='R' && p[1]=='O') { - if (section_add_flags(SF_SELECTED|SF_RO) != PS_OK) return PS_ERROR; + if (section_add_flags(SF_RO) != PS_OK) return PS_ERROR; SCRIPT_MSG("[RO] "); } else