[/trunk] Changeset 195 by mikael
authormikael
Thu, 05 May 2005 15:01:48 +0000
changeset 183 c658c131ea10
parent 182 f7b03201877a
child 184 b5aa2b9c425a
[/trunk] Changeset 195 by mikael * Fix a small bug (status is uppercase in log files)
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;
     }