1
0
mirror of https://github.com/ElvishArtisan/rivendell.git synced 2025-04-26 06:30:19 +02:00

2016-07-22 Fred Gleason <fredg@paravelsystems.com>

* Implemented an end-of-log delimiter in the output of the 'list'
	command for rdclilogedit(1).
This commit is contained in:
Fred Gleason 2016-07-22 12:50:42 -04:00
parent 7bf1cfef9b
commit c769a571dc
2 changed files with 4 additions and 1 deletions
ChangeLog
utils/rdclilogedit

@ -15379,3 +15379,6 @@
2016-07-22 Fred Gleason <fredg@paravelsystems.com>
* Fixed bug in 'utils/rdclilogedit/rdclilogedit.cpp' that would
cause the DB connection to time out.
2016-07-22 Fred Gleason <fredg@paravelsystems.com>
* Implemented an end-of-log delimiter in the output of the 'list'
command for rdclilogedit(1).

@ -125,7 +125,7 @@ void MainObject::List()
for(int i=0;i<edit_log_event->size();i++) {
printf("%4d %s\n",i,(const char *)ListLine(edit_log_event,i));
}
fflush(stdout);
printf("%4d --- end of log ---\n",edit_log_event->size());
}