changeset 183:c658c131ea10

[/trunk] Changeset 195 by mikael * Fix a small bug (status is uppercase in log files)
author mikael
date Thu, 05 May 2005 15:01:48 +0000
parents f7b03201877a
children b5aa2b9c425a
files mcabber/src/histolog.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
     }