mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Added support for downloading last message
SVN revision: 2486
This commit is contained in:
parent
05f2a4dafa
commit
5b5699e04e
10
src/elogd.c
10
src/elogd.c
@ -14108,9 +14108,13 @@ int show_download_page(LOGBOOK * lbs, char *path)
|
||||
|
||||
/* return entry */
|
||||
|
||||
for (index = 0; index < *lbs->n_el_index; index++)
|
||||
if (lbs->el_index[index].message_id == message_id)
|
||||
break;
|
||||
if (message_id == -1)
|
||||
index = *lbs->n_el_index - 1; // last entry
|
||||
else {
|
||||
for (index = 0; index < *lbs->n_el_index; index++)
|
||||
if (lbs->el_index[index].message_id == message_id)
|
||||
break;
|
||||
}
|
||||
|
||||
if (index == *lbs->n_el_index)
|
||||
return EL_NO_MSG;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user