From bdaeaa11cd2c91c1adbb9527da3abd710c02fc2c Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 17 Aug 2001 14:08:35 +0000 Subject: [PATCH] /LASTLOG: start parameter wasn't handled correctly git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1763 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/lastlog.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/fe-text/lastlog.c b/src/fe-text/lastlog.c index 320a2a99..e854fd9b 100644 --- a/src/fe-text/lastlog.c +++ b/src/fe-text/lastlog.c @@ -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);