diff options
Diffstat (limited to 'linden/indra/lscript/lscript_execute/lscript_readlso.cpp')
-rw-r--r-- | linden/indra/lscript/lscript_execute/lscript_readlso.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/linden/indra/lscript/lscript_execute/lscript_readlso.cpp b/linden/indra/lscript/lscript_execute/lscript_readlso.cpp index 6dc1474..3b10cc6 100644 --- a/linden/indra/lscript/lscript_execute/lscript_readlso.cpp +++ b/linden/indra/lscript/lscript_execute/lscript_readlso.cpp | |||
@@ -17,7 +17,8 @@ | |||
17 | * There are special exceptions to the terms and conditions of the GPL as | 17 | * There are special exceptions to the terms and conditions of the GPL as |
18 | * it is applied to this Source Code. View the full text of the exception | 18 | * it is applied to this Source Code. View the full text of the exception |
19 | * in the file doc/FLOSS-exception.txt in this software distribution, or | 19 | * in the file doc/FLOSS-exception.txt in this software distribution, or |
20 | * online at http://secondlifegrid.net/programs/open_source/licensing/flossexception | 20 | * online at |
21 | * http://secondlifegrid.net/programs/open_source/licensing/flossexception | ||
21 | * | 22 | * |
22 | * By copying, modifying or distributing this software, you acknowledge | 23 | * By copying, modifying or distributing this software, you acknowledge |
23 | * that you have read and understood your obligations described above, | 24 | * that you have read and understood your obligations described above, |
@@ -624,6 +625,16 @@ void LLScriptLSOParse::printStates(LLFILE *fp) | |||
624 | bytestream2char(name, mRawData, event_offset, sizeof(name)); | 625 | bytestream2char(name, mRawData, event_offset, sizeof(name)); |
625 | fprintf(fp, "\t\tstring %s\n", name); | 626 | fprintf(fp, "\t\tstring %s\n", name); |
626 | break; | 627 | break; |
628 | case LSTT_HTTP_REQUEST: // LSTT_HTTP_REQUEST | ||
629 | bytestream2char(name, mRawData, event_offset, sizeof(name)); | ||
630 | fprintf(fp, "%s\n", name); | ||
631 | bytestream2char(name, mRawData, event_offset, sizeof(name)); | ||
632 | fprintf(fp, "\t\tkey %s\n", name); | ||
633 | bytestream2char(name, mRawData, event_offset, sizeof(name)); | ||
634 | fprintf(fp, "\t\tstring %s\n", name); | ||
635 | bytestream2char(name, mRawData, event_offset, sizeof(name)); | ||
636 | fprintf(fp, "\t\tstring %s\n", name); | ||
637 | break; | ||
627 | default: | 638 | default: |
628 | break; | 639 | break; |
629 | } | 640 | } |