aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llapp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llapp.cpp')
-rw-r--r--linden/indra/llcommon/llapp.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/linden/indra/llcommon/llapp.cpp b/linden/indra/llcommon/llapp.cpp
index 5ae0727..a10436a 100644
--- a/linden/indra/llcommon/llapp.cpp
+++ b/linden/indra/llcommon/llapp.cpp
@@ -166,7 +166,16 @@ bool LLApp::parseCommandOptions(int argc, char** argv)
166 // we found another option after this one or we have 166 // we found another option after this one or we have
167 // reached the end. simply record that this option was 167 // reached the end. simply record that this option was
168 // found and continue. 168 // found and continue.
169 commands[name] = true; 169 int flag = name.compare("logfile");
170 if (0 == flag)
171 {
172 commands[name] = "log";
173 }
174 else
175 {
176 commands[name] = true;
177 }
178
170 continue; 179 continue;
171 } 180 }
172 ++ii; 181 ++ii;