2017-02-07 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'web/rdxport/logs.cpp' the caused the 'SaveLog'
	web method to fail.
This commit is contained in:
Fred Gleason 2017-02-07 08:46:24 -05:00
parent af592fa200
commit 79a0efb50d
2 changed files with 4 additions and 1 deletions

View File

@ -15560,3 +15560,6 @@
'libfaad.so.2' in 'cae/cae.cpp' and 'lib/rdmp4.cpp'.
* Changed the DLL load target for mp4v2 from 'libmp4v2.so' to
'libmp4v2.so.2' in 'cae/cae.cpp' and 'lib/rdaudioconvert.cpp'.
2017-02-07 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'web/rdxport/logs.cpp' the caused the 'SaveLog'
web method to fail.

View File

@ -259,7 +259,7 @@ void Xport::SaveLog()
for(int i=0;i<line_quantity;i++) {
logevt->insert(i,1);
RDLogLine *ll=logevt->logLine(i);
QString line=QString().sprintf("LINE%d_",i);
QString line=QString().sprintf("LINE%d",i);
QString str;
int integer1;
int integer2;