comparison mcabber/mcabber/histolog.c @ 1780:e4378fbab5d7

Major API cleanup - bump API to 4 Get rid of old CamelCase names in screen.h
author Mikael Berthe <mikael@lilotux.net>
date Sun, 14 Mar 2010 12:09:08 +0100
parents e6e89b1d7831
children e6d355e50d7a
comparison
equal deleted inserted replaced
1779:2911c950dcd1 1780:e4378fbab5d7
196 // If file is large (> 3MB here), display a message to inform the user 196 // If file is large (> 3MB here), display a message to inform the user
197 // (it can take a while...) 197 // (it can take a while...)
198 if (!fstat(fileno(fp), &bufstat)) { 198 if (!fstat(fileno(fp), &bufstat)) {
199 if (bufstat.st_size > 3145728) { 199 if (bufstat.st_size > 3145728) {
200 scr_LogPrint(LPRINT_NORMAL, "Reading <%s> history file...", bjid); 200 scr_LogPrint(LPRINT_NORMAL, "Reading <%s> history file...", bjid);
201 scr_DoUpdate(); 201 scr_do_update();
202 } 202 }
203 } 203 }
204 204
205 max_num_of_blocks = get_max_history_blocks(); 205 max_num_of_blocks = get_max_history_blocks();
206 206