diff -r 8dfdc6f1778e -r 73f6ce668ba8 mcabber/src/histolog.c --- a/mcabber/src/histolog.c Sat Jun 04 11:44:55 2005 +0000 +++ b/mcabber/src/histolog.c Sat Jun 04 12:47:13 2005 +0000 @@ -238,11 +238,11 @@ } inline void hlog_write_status(const char *jid, time_t timestamp, - enum imstatus status) + enum imstatus status, const char *status_msg) { // #1 XXX Check status value? // #2 We could add a user-readable comment write_histo_line(jid, timestamp, 'S', toupper(imstatus2char[status]), - NULL); + status_msg); }