# HG changeset patch # User mikael # Date 1115305308 0 # Node ID c658c131ea10d3c751f7f20d7e4afee7ffe5ae1c # Parent f7b03201877ad3e75e7272ce039d658c39b95fcb [/trunk] Changeset 195 by mikael * Fix a small bug (status is uppercase in log files) diff -r f7b03201877a -r c658c131ea10 mcabber/src/histolog.c --- a/mcabber/src/histolog.c Thu May 05 14:34:14 2005 +0000 +++ b/mcabber/src/histolog.c Thu May 05 15:01:48 2005 +0000 @@ -141,7 +141,7 @@ // Some checks if (((type == 'M') && (info != 'S' && info != 'R')) || - ((type == 'I') && (!strchr("oaifdcn", info)))) { + ((type == 'I') && (!strchr("OAIFDCN", info)))) { scr_LogPrint("Error in history file format"); break; }