1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

/LASTLOG: start parameter wasn't handled correctly

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1763 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-17 14:08:35 +00:00 committed by cras
parent 2d37f461ac
commit bdaeaa11cd

View File

@ -147,10 +147,8 @@ static void show_lastlog(const char *searchtext, GHashTable *optlist,
if (count <= 0)
tmp = list;
else {
int pos = len-count;
int pos = len-count-start;
if (pos < 0) pos = 0;
pos += start;
tmp = pos > len ? NULL : g_list_nth(list, pos);
len = g_list_length(tmp);